forked from mirrors/nixpkgs
pythonPackages.JayDeBeApi: refactor formatting and metadata changes
This commit is contained in:
parent
3c0d4f2dc3
commit
41d1ac24ba
|
@ -1,16 +1,25 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, JPype1 }:
|
||||
{ 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.";
|
||||
|
||||
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";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue