oslo-*: rip

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
This commit is contained in:
makefu
2017-12-15 16:08:38 +01:00
parent 276d2f6c4d
commit 1dc6ee10d7
6 changed files with 1 additions and 892 deletions
@@ -1,37 +0,0 @@
{ buildPythonPackage, isPyPy, fetchPypi, python
, pbr, testtools, testresources, testrepository, mock
, pep8, fixtures, mox3, requests-mock
, iso8601, requests, six, stevedore, webob, oslo-config
, pyyaml, betamax, oauthlib
}:
buildPythonPackage rec {
pname = "keystoneauth1";
version = "3.2.0";
name = "${pname}-${version}";
disabled = isPyPy; # a test fails
src = fetchPypi {
inherit pname version;
sha256 = "0rg3harfyvai34lrjiqnl1crmvswjvj8nsviasnz4b9pcvp3d03n";
};
buildInputs = [ pbr ];
checkInputs = [ pyyaml betamax oauthlib testtools testresources
testrepository mock pep8 fixtures mox3 requests-mock ];
propagatedBuildInputs = [ iso8601 requests six stevedore webob ];
doCheck = true;
# 1. oslo-config
# 2. oslo-utils
# 3. requests-kerberos
preCheck = ''
rm keystoneauth1/tests/unit/loading/test_{session,conf,adapter}.py
rm keystoneauth1/tests/unit/access/test_v{2,3}_access.py
rm keystoneauth1/tests/unit/extras/kerberos/test_fedkerb_loading.py
'';
postPatch = ''
sed -i 's@python@${python.interpreter}@' .testr.conf
substituteInPlace requirements.txt --replace "argparse" ""
'';
}