python3Packages.dbutils: 3.0.1 -> 3.0.2

This commit is contained in:
Fabian Affolter 2022-01-15 11:28:02 +01:00 committed by Martin Weinelt
parent cbd5d46bf6
commit dcf0978d8a

View file

@ -2,21 +2,29 @@
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
version = "3.0.1";
pname = "dbutils";
version = "3.0.2";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit version;
pname = "DBUtils";
sha256 = "6ec83f4d75d7a7b42a92e86b775f251e2671639b3b2123fe13a5d8d8fe7c5643";
hash = "sha256-+t65eeFAbcEj4tuZVfMU4NU2DzBOC9bPBHqqX8P99bM=";
};
checkInputs = [ pytestCheckHook ];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "dbutils" ];
pythonImportsCheck = [
"dbutils"
];
meta = with lib; {
description = "Database connections for multi-threaded environments";