devpi-client: fix build

Upstream has already patched this, but haven't done a release yet.
185072fcc6
This commit is contained in:
Jonathan Ringer 2021-10-30 13:26:30 -07:00
parent dbe6b53a93
commit fe28300366
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0

View File

@ -32,6 +32,12 @@ buildPythonApplication rec {
sha256 = "24ac6d94108996efad4ff5185dabb1e5120ae238134b8175d6de2ca9e766cd92";
};
postPatch = ''
# can be removed after 5.2.2, updated upstream
substituteInPlace setup.py \
--replace "pluggy>=0.6.0,<1.0" "pluggy"
'';
buildInputs = [ glibcLocales ];
propagatedBuildInputs = [ py devpi-common pluggy setuptools check-manifest pkginfo ];