nixpkgs/pkgs/development/python-modules/hcloud/default.nix

39 lines
819 B
Nix
Raw Normal View History

2019-09-26 12:50:15 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, future
, requests
, python-dateutil
, flake8
, isort
, mock
, pytest
}:
buildPythonPackage rec {
pname = "hcloud";
2020-11-23 17:59:34 +00:00
version = "1.10.0";
2019-09-26 12:50:15 +01:00
src = fetchPypi {
inherit pname version;
2020-11-23 17:59:34 +00:00
sha256 = "11sdyays90lmkbdxhllc8ccx0xhrafb7dknqgjlrfpzq04v67vyy";
2019-09-26 12:50:15 +01:00
};
propagatedBuildInputs = [ future requests python-dateutil ];
checkInputs = [ flake8 isort mock pytest ];
# Skip integration tests since they require a separate external fake API endpoint.
checkPhase = ''
pytest --ignore=tests/integration
'';
meta = with lib; {
description = "Official Hetzner Cloud python library";
homepage = "https://github.com/hetznercloud/hcloud-python";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ liff ];
};
2020-08-10 10:06:31 +01:00
}