python310Packages.jaydebapi: Normalize attribute, pname, dirname

This commit is contained in:
Martin Weinelt
2023-02-19 21:36:01 +01:00
parent 5b1bb7e42a
commit ee9b576f25
4 changed files with 6 additions and 4 deletions
@@ -0,0 +1,26 @@
{ lib
, buildPythonPackage
, fetchPypi
, jpype1
}:
buildPythonPackage rec {
pname = "jaydebeapi";
version = "1.2.3";
src = fetchPypi {
pname = "JayDeBeApi";
inherit version;
sha256 = "f25e9307fbb5960cb035394c26e37731b64cc465b197c4344cee85ec450ab92f";
};
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";
};
}