python2Packages.libcloud: remove

This commit is contained in:
Robert Schütz 2022-06-06 19:22:41 +00:00
parent c769a56661
commit f9c76fbaec
2 changed files with 0 additions and 41 deletions

View file

@ -1,39 +0,0 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, mock
, pycrypto
, requests
, pytest-runner
, pytest
, requests-mock
, typing
, backports_ssl_match_hostname
}:
buildPythonPackage rec {
pname = "apache-libcloud";
version = "2.8.3";
src = fetchPypi {
inherit pname version;
sha256 = "70096690b24a7832cc5abdfda1954b49fddc1c09a348a1e6caa781ac867ed4c6";
};
checkInputs = [ mock pytest pytest-runner requests-mock ];
propagatedBuildInputs = [ pycrypto requests ]
++ lib.optionals isPy27 [ typing backports_ssl_match_hostname ];
preConfigure = "cp libcloud/test/secrets.py-dist libcloud/test/secrets.py";
# requires a certificates file
doCheck = false;
meta = with lib; {
description = "A unified interface to many cloud providers";
homepage = "https://libcloud.apache.org/";
license = licenses.asl20;
};
}

View file

@ -46,8 +46,6 @@ with self; with super; {
jinja2 = callPackage ../development/python2-modules/jinja2 { };
libcloud = callPackage ../development/python2-modules/libcloud { };
lpod = callPackage ../development/python2-modules/lpod { };
marisa = callPackage ../development/python2-modules/marisa {