depot/third_party/nixpkgs/pkgs/development/python-modules/hcloud/default.nix
Default email 2ce89355c3 Project import generated by Copybara.
GitOrigin-RevId: 22a81aa5fc15b2d41b12f7160a71cd4a9f3c3fa1
2020-06-15 17:56:04 +02:00

38 lines
No EOL
829 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, future
, requests
, python-dateutil
, flake8
, isort
, mock
, pytest
}:
buildPythonPackage rec {
pname = "hcloud";
version = "1.7.0";
src = fetchPypi {
inherit pname version;
sha256 = "d249ab784b23026fcde21e4d69b46eaf9f3559ba3612f1d896a4092ecfc06a75";
};
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 ];
};
}