3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/JayDeBeApi/default.nix

26 lines
503 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, JPype1
}:
2018-02-15 18:17:40 +00:00
buildPythonPackage rec {
pname = "JayDeBeApi";
2020-06-06 07:46:55 +01:00
version = "1.2.2";
2018-02-15 18:17:40 +00:00
src = fetchPypi {
inherit pname version;
2020-06-06 07:46:55 +01:00
sha256 = "e9847e437ad293ee3cc47767b74c387068cd21607842de8470d5d3f13d613083";
2018-02-15 18:17:40 +00:00
};
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";
2018-02-15 18:17:40 +00:00
};
}