mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 11:56:33 +01:00
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
26 lines
542 B
Nix
26 lines
542 B
Nix
{
|
|
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";
|
|
};
|
|
}
|