2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
|
|
|
nose,
|
|
|
|
mock,
|
|
|
|
pyopenssl,
|
|
|
|
urllib3,
|
|
|
|
dnspython,
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "python-etcd";
|
|
|
|
version = "0.4.5";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "f1b5ebb825a3e8190494f5ce1509fde9069f2754838ed90402a8c11e1f52b8cb";
|
|
|
|
};
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
buildInputs = [
|
|
|
|
nose
|
|
|
|
mock
|
|
|
|
pyopenssl
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
urllib3
|
|
|
|
dnspython
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
sed -i '19s/dns/"dnspython"/' setup.py
|
|
|
|
'';
|
|
|
|
|
|
|
|
# Some issues with etcd not in path even though most tests passed
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Python client for Etcd";
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://github.com/jplana/python-etcd";
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|