mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 19:54:05 +00:00
65 lines
1.1 KiB
Nix
65 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, callPackage
|
|
, fetchPypi
|
|
, platformdirs
|
|
, cryptography
|
|
, dogpile-cache
|
|
, jmespath
|
|
, jsonpatch
|
|
, keystoneauth1
|
|
, munch
|
|
, netifaces
|
|
, os-service-types
|
|
, pbr
|
|
, pythonOlder
|
|
, pyyaml
|
|
, requestsexceptions
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "openstacksdk";
|
|
version = "2.1.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-dsm3QKLNYl/MbpJBYU7vKgk0y3I1SlxYcWj4+t7y5nQ=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
platformdirs
|
|
cryptography
|
|
dogpile-cache
|
|
jmespath
|
|
jsonpatch
|
|
keystoneauth1
|
|
munch
|
|
netifaces
|
|
os-service-types
|
|
pbr
|
|
requestsexceptions
|
|
pyyaml
|
|
];
|
|
|
|
# Checks moved to 'passthru.tests' to workaround slowness
|
|
doCheck = false;
|
|
|
|
passthru.tests = {
|
|
tests = callPackage ./tests.nix { };
|
|
};
|
|
|
|
pythonImportsCheck = [
|
|
"openstack"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "An SDK for building applications to work with OpenStack";
|
|
homepage = "https://github.com/openstack/openstacksdk";
|
|
license = licenses.asl20;
|
|
maintainers = teams.openstack.members;
|
|
};
|
|
}
|