python313Packages.hcloud: 2.5.2 -> 2.5.3 (#420859)

This commit is contained in:
Fabian Affolter
2025-06-29 11:52:41 +02:00
committed by GitHub
@@ -2,39 +2,30 @@
lib,
buildPythonPackage,
fetchPypi,
future,
mock,
pytestCheckHook,
python-dateutil,
pythonOlder,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "hcloud";
version = "2.5.2";
version = "2.5.3";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchPypi {
inherit pname version;
hash = "sha256-v1vnII5q1bOf/neiNOJPa+t03ma/cjLbxbabo2jQptQ=";
hash = "sha256-+9unvxFjf/ryqN6g4IKWX1viwgSfkgrX1prjXvBnbWs=";
};
build-system = [ setuptools ];
dependencies = [
future
requests
python-dateutil
];
nativeCheckInputs = [
mock
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "hcloud" ];