nixos/garage: add user-given path to ReadWritePaths (#373114)
[NixPkgs.git] / pkgs / development / python-modules / ionoscloud / default.nix
bloba9942a37580f0b38831c84d9474b2e53fd07e130
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6   urllib3,
7   six,
8   certifi,
9   python-dateutil,
10   asn1crypto,
13 buildPythonPackage rec {
14   pname = "ionoscloud";
15   version = "6.1.9";
16   pyproject = true;
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-IpDhuZ8KrqT8g3UKgdEmjzKRlK1SXq1fgrTDFy/fvpU=";
21   };
23   nativeBuildInputs = [ setuptools ];
25   propagatedBuildInputs = [
26     urllib3
27     six
28     certifi
29     python-dateutil
30     asn1crypto
31   ];
33   # upstream only has codecoverage tests, but no actual tests to go with them
34   doCheck = false;
36   pythonImportsCheck = [ "ionoscloud" ];
38   meta = with lib; {
39     homepage = "https://github.com/ionos-cloud/sdk-python";
40     description = "Python API client for ionoscloud";
41     changelog = "https://github.com/ionos-cloud/sdk-python/blob/v${version}/docs/CHANGELOG.md";
42     license = licenses.asl20;
43     maintainers = [ ];
44   };