5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
45 lines
905 B
Nix
45 lines
905 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
urllib3,
|
|
six,
|
|
certifi,
|
|
python-dateutil,
|
|
asn1crypto,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ionoscloud";
|
|
version = "6.1.9";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-IpDhuZ8KrqT8g3UKgdEmjzKRlK1SXq1fgrTDFy/fvpU=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
propagatedBuildInputs = [
|
|
urllib3
|
|
six
|
|
certifi
|
|
python-dateutil
|
|
asn1crypto
|
|
];
|
|
|
|
# upstream only has codecoverage tests, but no actual tests to go with them
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "ionoscloud" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/ionos-cloud/sdk-python";
|
|
description = "Python API client for ionoscloud";
|
|
changelog = "https://github.com/ionos-cloud/sdk-python/blob/v${version}/docs/CHANGELOG.md";
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
};
|
|
}
|