summary refs log tree commit diff
path: root/pkgs/development/python-modules/JayDeBeApi/default.nix
blob: a423945b0ce8edfa9e271313e805377f21fea392 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ lib, buildPythonPackage, fetchPypi, JPype1 }:

buildPythonPackage rec {
  pname = "JayDeBeApi";
  version = "1.1.1";
  src = fetchPypi {
    inherit pname version;
    sha256 = "0a189xs9zw81jvwwglvf2qyqnk6ra0biljssx9n4ffayqn9glbds";
  };
  propagatedBuildInputs = [ JPype1 ];
  meta = {
    homepage = "https://github.com/baztian/jaydebeapi";
    license = lib.licenses.lgpl2;
    description = "Use JDBC database drivers from Python 2/3 or Jython with a DB-API.";
  };
}