aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/JayDeBeApi/default.nix
blob: 738419e8c5c843b331196206de24dae47f5704a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib
, buildPythonPackage
, fetchPypi
, JPype1
}:

buildPythonPackage rec {
  pname = "JayDeBeApi";
  version = "1.1.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0a189xs9zw81jvwwglvf2qyqnk6ra0biljssx9n4ffayqn9glbds";
  };

  propagatedBuildInputs = [
    JPype1
  ];

  meta = with lib; {
    homepage = "https://github.com/baztian/jaydebeapi";
    license = licenses.lgpl2;
    description = "Use JDBC database drivers from Python 2/3 or Jython with a DB-API";
  };
}