blob: b9dcd8aaee3948cbd9c6c050d870f605c864ac3d (
plain) (
blame)
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,
nose,
mock,
pyopenssl,
urllib3,
dnspython,
}:
buildPythonPackage rec {
pname = "python-etcd";
version = "0.4.5";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "f1b5ebb825a3e8190494f5ce1509fde9069f2754838ed90402a8c11e1f52b8cb";
};
buildInputs = [
nose
mock
pyopenssl
];
propagatedBuildInputs = [
urllib3
dnspython
];
postPatch = ''
sed -i '19s/dns/"dnspython"/' setup.py
'';
# Some issues with etcd not in path even though most tests passed
doCheck = false;
meta = with lib; {
description = "Python client for Etcd";
homepage = "https://github.com/jplana/python-etcd";
license = licenses.mit;
};
}
|