python: apache-libcloud: 1.2.1 -> 2.3.0

This commit is contained in:
Frederik Rietdijk 2018-11-04 11:35:04 +01:00
parent 05a94cd622
commit 7154595e6c

View File

@ -3,23 +3,27 @@
, fetchPypi
, mock
, pycrypto
, requests
, pytestrunner
, pytest
, requests-mock
}:
buildPythonPackage rec {
pname = "apache-libcloud";
version = "1.2.1";
version = "2.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "0qlhyz5f32xg8i10biyzqscks8d28vklk63hvj45vzy1amw60kqz";
sha256 = "0e2eee3802163bd0605975ed1e284cafc23203919bfa80c0cc5d3cd2543aaf97";
};
buildInputs = [ mock ];
propagatedBuildInputs = [ pycrypto ];
checkInputs = [ mock pytest pytestrunner requests-mock ];
propagatedBuildInputs = [ pycrypto requests ];
preConfigure = "cp libcloud/test/secrets.py-dist libcloud/test/secrets.py";
# failing tests for 26 and 27
# requires a certificates file
doCheck = false;
meta = with stdenv.lib; {