ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
66 lines
1.1 KiB
Nix
66 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 = "3.0.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-sMf5oCXV2pKtTHYpQeasxMtTkwoH/3OamuvMXlpySuY=";
|
|
};
|
|
|
|
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";
|
|
mainProgram = "openstack-inventory";
|
|
homepage = "https://github.com/openstack/openstacksdk";
|
|
license = licenses.asl20;
|
|
maintainers = teams.openstack.members;
|
|
};
|
|
}
|