oslo-vmware: rip
oslo-serialization: rip
pycadf: rip
os-brick: rip
taskflow: rip
oslo-utils: rip
oslo-middlewar: rip
oslo-versionedobjects: rip
oslo-messaging: rip
oslo-reports: rip
oslo-db: rip
oslo-rootwrap: rip
oslo-service: rip
oslo-cache: rip
oslo-config: rip
glance_store: rip
networking-hyperv: rip
ryu: rip
keystoneauth1: rip
os-client-config: rip
oslo-log: rip
tempest-lib: rip
oslo-context: rip
oslo-i18n: rip
oslotest: rip
futurist: rip
bandit: rip
cliff: rip
cliff-tablib: rip
oslosphinx: rip
osprofile: rip
os-testr: rip
stevedore: remove oslosphinx from buildInputs
oslo-policy: rip
oslo-concurrency: rip
unused packages:
swiftclient: rip
debtcollector: rip
automaton: rip
23 lines
558 B
Nix
23 lines
558 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, pbr, six, argparse }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "stevedore";
|
|
version = "1.27.1";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "236468dae36707069e8b3bdb455e9f1be090b1e6b937f4ac0c56a538d6f50be0";
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
propagatedBuildInputs = [ pbr six argparse ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Manage dynamic plugins for Python applications";
|
|
homepage = https://pypi.python.org/pypi/stevedore;
|
|
license = licenses.asl20;
|
|
};
|
|
}
|