blob: 62be3cf6398118effdfd7139b45e31d4867183d5 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
simplejson,
pytz,
requests,
}:
buildPythonPackage rec {
pname = "etcd";
version = "2.0.8";
format = "setuptools";
# PyPI package is incomplete
src = fetchFromGitHub {
owner = "dsoprea";
repo = "PythonEtcdClient";
rev = version;
hash = "sha256-h+jYIRSNdrGkW3tBV1ifIDEXU46EQGyeJoz/Mxym4pI=";
};
postPatch = ''
sed -i -e '13,14d;37d' setup.py
'';
propagatedBuildInputs = [
simplejson
pytz
requests
];
# No proper tests are available
doCheck = false;
meta = {
description = "Python etcd client that just works";
homepage = "https://github.com/dsoprea/PythonEtcdClient";
license = lib.licenses.gpl2;
maintainers = [ ];
};
}
|