mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
python311Packages.ionoscloud: init at 6.1.8
This commit is contained in:
parent
65b0fd2bee
commit
0590b13a4d
40
pkgs/development/python-modules/ionoscloud/default.nix
Normal file
40
pkgs/development/python-modules/ionoscloud/default.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, setuptools
|
||||
, urllib3
|
||||
, six
|
||||
, certifi
|
||||
, python-dateutil
|
||||
, asn1crypto
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ionoscloud";
|
||||
version = "6.1.8";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash= "sha256-QQNDqKZ+X+w5vHFXr793QqRjShNBZ182DyD3fUUxqkc=";
|
||||
};
|
||||
|
||||
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 = with maintainers; [ hexchen ];
|
||||
};
|
||||
}
|
@ -5428,6 +5428,8 @@ self: super: with self; {
|
||||
|
||||
ionhash = callPackage ../development/python-modules/ionhash { };
|
||||
|
||||
ionoscloud = callPackage ../development/python-modules/ionoscloud { };
|
||||
|
||||
iopath = callPackage ../development/python-modules/iopath { };
|
||||
|
||||
iotawattpy = callPackage ../development/python-modules/iotawattpy { };
|
||||
|
Loading…
Reference in New Issue
Block a user