Files
nixpkgs/pkgs/development/python-modules/python-etcd/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

46 lines
759 B
Nix

{
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;
};
}