mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
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 {
|
buildPythonPackage rec {
|
||||||
pname = "JayDeBeApi";
|
pname = "JayDeBeApi";
|
||||||
version = "1.1.1";
|
version = "1.1.1";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "0a189xs9zw81jvwwglvf2qyqnk6ra0biljssx9n4ffayqn9glbds";
|
sha256 = "0a189xs9zw81jvwwglvf2qyqnk6ra0biljssx9n4ffayqn9glbds";
|
||||||
};
|
};
|
||||||
propagatedBuildInputs = [ JPype1 ];
|
|
||||||
meta = {
|
propagatedBuildInputs = [
|
||||||
homepage = "https://github.com/baztian/jaydebeapi";
|
JPype1
|
||||||
license = lib.licenses.lgpl2;
|
];
|
||||||
description = "Use JDBC database drivers from Python 2/3 or Jython with a DB-API.";
|
|
||||||
|
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 New Issue
Block a user