about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/JayDeBeApi/default.nix
blob: dd1cc819ad6613d6a3fbe942bcf42b2333b32e39 (plain) (blame)
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";
  };
}