pythonPackages.JayDeBeApi: refactor formatting and metadata changes

This commit is contained in:
Chris Ostrouchov
2020-01-07 02:10:48 -08:00
committed by Jon
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";
}; };
} }