2021-08-10 15:00:50 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pytestCheckHook
|
|
|
|
}:
|
2020-11-28 02:36:32 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2021-08-10 15:00:50 +01:00
|
|
|
version = "2.0.2";
|
2020-11-28 02:36:32 +00:00
|
|
|
pname = "dbutils";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit version;
|
|
|
|
pname = "DBUtils";
|
2021-08-10 15:00:50 +01:00
|
|
|
sha256 = "1cc8zyd4lapzf9ny6c2jf1vysphlhr19m8miyvw5spbyq4pxpnsf";
|
2020-11-28 02:36:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
|
2021-08-10 15:00:50 +01:00
|
|
|
pythonImportsCheck = [ "dbutils" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-11-28 02:36:32 +00:00
|
|
|
description = "Database connections for multi-threaded environments";
|
|
|
|
homepage = "https://webwareforpython.github.io/DBUtils/";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
|
|
|
};
|
|
|
|
}
|