mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
40 lines
861 B
Nix
40 lines
861 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPy27
|
|
, mock
|
|
, pycrypto
|
|
, requests
|
|
, pytestrunner
|
|
, 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 pytestrunner 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 = "http://incubator.apache.org/libcloud/";
|
|
license = licenses.asl20;
|
|
};
|
|
|
|
}
|