Files
nixpkgs/pkgs/development/python-modules/dbutils/default.nix
T
Martin Weinelt 0074295cde python3Packages.dbutils: 3.1.0 -> 3.1.1
https://webwareforpython.github.io/DBUtils/changelog.html

This commit was automatically generated using update-python-libraries.
2025-08-09 18:59:02 +02:00

37 lines
761 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "dbutils";
version = "3.1.1";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit version;
pname = "DBUtils";
hash = "sha256-reefvFeG10ltQThyL7yiQ0DPfHO11m3wUpb2Vv8Ia78=";
};
nativeBuildInputs = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "dbutils" ];
meta = {
description = "Database connections for multi-threaded environments";
homepage = "https://webwareforpython.github.io/DBUtils/";
changelog = "https://webwareforpython.github.io/DBUtils/changelog.html";
license = lib.licenses.mit;
maintainers = [ ];
};
}