about summary refs log tree commit diff
path: root/pkgs/development/python-modules/etcd
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2023-03-23 15:02:36 +0100
committerGitHub <noreply@github.com>2023-03-23 15:02:36 +0100
commit49024b4257bf4d2322b532b9fd6b02ef65d7b272 (patch)
tree2b9b8cb678441f8e7cf14d076cf1dde9432758b8 /pkgs/development/python-modules/etcd
parent979c6c1fe4b1172ca388f13714a7a2e13002e2f3 (diff)
parent4ee9acb309665a7bf7661c596b33aff74286638a (diff)
Merge pull request #216350 from SuperSandro2000/etcd
python310Packages.etcd: cleanup patchPhase overwrite, update meta
Diffstat (limited to 'pkgs/development/python-modules/etcd')
-rw-r--r--pkgs/development/python-modules/etcd/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/etcd/default.nix b/pkgs/development/python-modules/etcd/default.nix
index b98e9a63dd48d..d4931696916a2 100644
--- a/pkgs/development/python-modules/etcd/default.nix
+++ b/pkgs/development/python-modules/etcd/default.nix
@@ -18,7 +18,7 @@ buildPythonPackage rec {
     hash = "sha256-h+jYIRSNdrGkW3tBV1ifIDEXU46EQGyeJoz/Mxym4pI=";
   };
 
-  patchPhase = ''
+  postPatch = ''
     sed -i -e '13,14d;37d' setup.py
   '';
 
@@ -31,6 +31,6 @@ buildPythonPackage rec {
     description = "A Python etcd client that just works";
     homepage = "https://github.com/dsoprea/PythonEtcdClient";
     license = licenses.gpl2;
+    maintainers = with maintainers; [ ];
   };
-
 }