about summary refs log tree commit diff
path: root/pkgs/development/python-modules/etcd
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@sap.com>2023-02-14 18:49:10 +0100
committerSandro Jäckel <sandro.jaeckel@sap.com>2023-02-14 18:49:10 +0100
commit4ee9acb309665a7bf7661c596b33aff74286638a (patch)
treed580e4aad77d8b7a69ec189152f7aa9ce9525622 /pkgs/development/python-modules/etcd
parent6fe0b2308609dfcb5eea9c0aa287917ca6838bfe (diff)
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 a2c4dc971cbc0..e479885cd9142 100644
--- a/pkgs/development/python-modules/etcd/default.nix
+++ b/pkgs/development/python-modules/etcd/default.nix
@@ -18,7 +18,7 @@ buildPythonPackage rec {
     sha256 = "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; [ ];
   };
-
 }