summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2017-12-13 19:58:47 +0100
committermakefu <github@syntax-fehler.de>2017-12-15 16:08:38 +0100
commit276d2f6c4daed9ab047bde33100b3016ea21a592 (patch)
treee56d51f0d56645589f5325d7f859bbd707fc50aa /pkgs/development/python-modules
parent373d11751bedd284e07aca961b12f49e368679e7 (diff)
downloadnixlib-276d2f6c4daed9ab047bde33100b3016ea21a592.tar
nixlib-276d2f6c4daed9ab047bde33100b3016ea21a592.tar.gz
nixlib-276d2f6c4daed9ab047bde33100b3016ea21a592.tar.bz2
nixlib-276d2f6c4daed9ab047bde33100b3016ea21a592.tar.lz
nixlib-276d2f6c4daed9ab047bde33100b3016ea21a592.tar.xz
nixlib-276d2f6c4daed9ab047bde33100b3016ea21a592.tar.zst
nixlib-276d2f6c4daed9ab047bde33100b3016ea21a592.zip
keystoneclient: rip
barbicanclient: rip
  castellan: rip
cinderclient: rip
neutronclient: rip
glanceclient: rip
keystonemiddleware: rip
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/keystoneclient/default.nix53
1 files changed, 0 insertions, 53 deletions
diff --git a/pkgs/development/python-modules/keystoneclient/default.nix b/pkgs/development/python-modules/keystoneclient/default.nix
deleted file mode 100644
index a856f4db793f..000000000000
--- a/pkgs/development/python-modules/keystoneclient/default.nix
+++ /dev/null
@@ -1,53 +0,0 @@
-{ stdenv, buildPythonPackage, fetchFromGitHub, python
-
-, pbr, testtools, testresources, testrepository
-, requests-mock, fixtures, openssl, oslotest, pep8
-
-, oslo-serialization, oslo-config, oslo-i18n, oslo-utils
-, Babel, prettytable, requests, six, iso8601, stevedore
-, netaddr, debtcollector, bandit, webob, mock, pycrypto
-}:
-
-buildPythonPackage rec {
-  pname = "keystoneclient";
-  version = "1.8.1";
-  name = pname + "-" + version;
-
-  src = fetchFromGitHub {
-    owner = "openstack";
-    repo = "python-keystoneclient";
-    rev = version;
-    sha256 = "0yayn1hb3mncqb0isy8vy6d519xya7mhf5pcbn60fzdqjrkj2prq";
-  };
-
-  PBR_VERSION = "${version}";
-
-  buildInputs = [
-    pbr testtools testresources testrepository requests-mock fixtures openssl
-    oslotest pep8
-  ];
-  propagatedBuildInputs = [
-    oslo-serialization oslo-config oslo-i18n oslo-utils
-    Babel prettytable requests six iso8601 stevedore
-    netaddr debtcollector bandit webob mock pycrypto
-  ];
-
-  postPatch = ''
-    sed -i 's@python@${python.interpreter}@' .testr.conf
-    sed -ie '/argparse/d' requirements.txt
-    '';
-
-  doCheck = false; # The checkPhase below is broken
-
-  checkPhase = ''
-    patchShebangs run_tests.sh
-    ./run_tests.sh
-  '';
-
-  meta = with stdenv.lib; {
-    homepage = https://github.com/openstack/python-novaclient/;
-    description = "Client library and command line tool for the OpenStack Nova API";
-    license = licenses.asl20;
-    platforms = platforms.linux;
-  };
-}