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-23 09:47:27 +01:00
|
|
|
version = "1.8.1";
|
2019-09-26 12:50:15 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-23 09:47:27 +01:00
|
|
|
sha256 = "1xkds49z4hjyvz170913dz6886lhq4hb2n6dqqpv6q5p1znsx2gj";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|