nixpkgs/pkgs/development/python-modules/jaydebeapi/default.nix
Ihar Hrachyshka 567e8dfd8e
treewide: clean up 'meta = with' pattern
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>
2025-12-10 18:09:49 +01:00

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";
};
}