blob: 103bc0b2d065a8c28618f36787582483465d172f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{
lib,
buildPythonPackage,
fetchPypi,
pycrypto,
requests,
}:
buildPythonPackage rec {
pname = "apache-libcloud";
version = "3.8.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-db9MCxI7wiXiTKlfyhw1vjCxnmu4X+6ngUBNQ8QnbJE=";
};
propagatedBuildInputs = [
pycrypto
requests
];
preConfigure = ''
cp libcloud/test/secrets.py-dist libcloud/test/secrets.py
'';
postPatch = ''
substituteInPlace setup.py \
--replace "setup_requires=pytest_runner," "setup_requires=[],"
'';
# requires a certificates file
doCheck = false;
pythonImportsCheck = [ "libcloud" ];
meta = {
description = "Unified interface to many cloud providers";
homepage = "https://libcloud.apache.org/";
changelog = "https://github.com/apache/libcloud/blob/v${version}/CHANGES.rst";
license = lib.licenses.asl20;
maintainers = [ ];
};
}
|