3cbfd2b52c
GitOrigin-RevId: 395879c28386e1abf20c7ecacd45880759548391
27 lines
606 B
Nix
27 lines
606 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "3.0.0";
|
|
pname = "dbutils";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "DBUtils";
|
|
sha256 = "549d472197b3eef27e7bb2dd2246b28e880ac0ae9fdf63aadfd3b7def153db0c";
|
|
};
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "dbutils" ];
|
|
|
|
meta = with lib; {
|
|
description = "Database connections for multi-threaded environments";
|
|
homepage = "https://webwareforpython.github.io/DBUtils/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
|
};
|
|
}
|