pythonPackages.dbutils: init at 2.0

This commit is contained in:
Sandro Jäckel 2020-11-28 03:36:32 +01:00
parent 674d6ef5ca
commit b76763dd8b
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 23 additions and 0 deletions

@ -0,0 +1,21 @@
{ stdenv, buildPythonPackage, fetchPypi, pytestCheckHook }:
buildPythonPackage rec {
version = "2.0";
pname = "dbutils";
src = fetchPypi {
inherit version;
pname = "DBUtils";
sha256 = "131ifm2c2a7bipij597i8fvjka0dk2qv1xr2ghcvbc30jlkvag2g";
};
checkInputs = [ pytestCheckHook ];
meta = with stdenv.lib; {
description = "Database connections for multi-threaded environments";
homepage = "https://webwareforpython.github.io/DBUtils/";
license = licenses.mit;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}

@ -1532,6 +1532,8 @@ in {
dbus-python = callPackage ../development/python-modules/dbus { inherit (pkgs) dbus pkgconfig; };
dbutils = callPackage ../development/python-modules/dbutils { };
dcmstack = callPackage ../development/python-modules/dcmstack { };
ddt = callPackage ../development/python-modules/ddt { };