depot/third_party/nixpkgs/pkgs/development/python-modules/hcloud/default.nix
Default email 6d4aeb4377 Project import generated by Copybara.
GitOrigin-RevId: 0f213d0fee84280d8c3a97f7469b988d6fe5fcdf
2023-01-11 08:51:40 +01:00

46 lines
851 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, future
, mock
, pytestCheckHook
, python-dateutil
, pythonOlder
, requests
}:
buildPythonPackage rec {
pname = "hcloud";
version = "1.18.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-N71bpWOH48SRxbq9PgirkdXwOQzV6IDk3+oZ4haBvJ4=";
};
propagatedBuildInputs = [
future
requests
python-dateutil
];
checkInputs = [
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 ];
};
}