blob: a8f1b072c9ee5c0257c74f7fc4817a7e5295cd7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{
lib,
buildPythonPackage,
fetchPypi,
jpype1,
}:
buildPythonPackage rec {
pname = "jaydebeapi";
version = "1.2.3";
format = "setuptools";
src = fetchPypi {
pname = "JayDeBeApi";
inherit version;
sha256 = "f25e9307fbb5960cb035394c26e37731b64cc465b197c4344cee85ec450ab92f";
};
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";
};
}
|