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

38 lines
829 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-06-06 07:47:12 +01:00
version = "1.7.0";
2019-09-26 12:50:15 +01:00
src = fetchPypi {
inherit pname version;
2020-06-06 07:47:12 +01:00
sha256 = "d249ab784b23026fcde21e4d69b46eaf9f3559ba3612f1d896a4092ecfc06a75";
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 ];
};
}