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

41 lines
913 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
, pytest-runner
, pytest
, requests-mock
2019-12-21 22:46:23 +00:00
, typing
}:
buildPythonPackage rec {
pname = "apache-libcloud";
version = "3.3.1";
src = fetchPypi {
inherit pname version;
sha256 = "d7450453eaf5904eb4fb4f74cf9f37dc83721a719bce34f5abb336b1a1ab974d";
};
checkInputs = [ mock pytest pytest-runner 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;
pythonImportsCheck = [ "libcloud" ];
2019-12-21 22:46:23 +00:00
meta = with lib; {
description = "A unified interface to many cloud providers";
2021-01-31 01:51:10 +00:00
homepage = "https://libcloud.apache.org/";
changelog = "https://github.com/apache/libcloud/blob/v${version}/CHANGES.rst";
license = licenses.asl20;
};
}