nixpkgs/pkgs/development/python-modules/libcloud/default.nix

38 lines
797 B
Nix
Raw Normal View History

2019-12-21 22:46:23 +00:00
{ lib
, buildPythonPackage
, fetchPypi
2019-12-21 22:46:23 +00:00
, isPy27
, mock
, pycrypto
, requests
, pytestrunner
, pytest
, requests-mock
2019-12-21 22:46:23 +00:00
, typing
}:
buildPythonPackage rec {
pname = "apache-libcloud";
version = "3.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "2e3e4d02f9b3197f9119e737bc704fba52f34459d4bc96d8ad8f183d600747ba";
};
checkInputs = [ mock pytest pytestrunner requests-mock ];
2019-12-21 22:46:23 +00:00
propagatedBuildInputs = [ pycrypto requests ] ++ lib.optionals isPy27 [ typing ];
preConfigure = "cp libcloud/test/secrets.py-dist libcloud/test/secrets.py";
# requires a certificates file
doCheck = false;
2019-12-21 22:46:23 +00:00
meta = with lib; {
description = "A unified interface to many cloud providers";
homepage = "http://incubator.apache.org/libcloud/";
license = licenses.asl20;
};
}