blob: 05fe0b86069da0ab31b1154b3e58564db15e9a37 (
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
46
47
48
49
50
51
52
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
urllib3,
dnspython,
pytestCheckHook,
etcd_3_4,
mock,
pyopenssl,
}:
buildPythonPackage {
pname = "python-etcd";
version = "0.5.0-unstable-2023-10-31";
pyproject = true;
src = fetchFromGitHub {
owner = "jplana";
repo = "python-etcd";
rev = "5aea0fd4461bd05dd96e4ad637f6be7bceb1cee5";
hash = "sha256-eVirStLOPTbf860jfkNMWtGf+r0VygLZRjRDjBMCVKg=";
};
build-system = [ setuptools ];
dependencies = [
urllib3
dnspython
];
nativeCheckInputs = [
pytestCheckHook
etcd_3_4
mock
pyopenssl
];
preCheck = ''
for file in "test_auth" "integration/test_simple"; do
substituteInPlace src/etcd/tests/$file.py \
--replace-fail "assertEquals" "assertEqual"
done
'';
meta = with lib; {
description = "Python client for Etcd";
homepage = "https://github.com/jplana/python-etcd";
license = licenses.mit;
};
}
|