nixpkgs/pkgs/development/python-modules/hcloud/default.nix
2023-09-25 16:14:53 +00:00

47 lines
857 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, future
, mock
, pytestCheckHook
, python-dateutil
, pythonOlder
, requests
}:
buildPythonPackage rec {
pname = "hcloud";
version = "1.29.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-d5LEN7sFoO+R7pGTvLOMRoej/KB17uY3kqF+CY97x1k=";
};
propagatedBuildInputs = [
future
requests
python-dateutil
];
nativeCheckInputs = [
mock
pytestCheckHook
];
pythonImportsCheck = [
"hcloud"
];
meta = with lib; {
description = "Library for the Hetzner Cloud API";
homepage = "https://github.com/hetznercloud/hcloud-python";
changelog = "https://github.com/hetznercloud/hcloud-python/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ liff ];
};
}