Merge pull request #286797 from seb314/seb314/fix-piep-py3

python3Packages.piep: fix enable for python3
This commit is contained in:
Artturin 2024-05-06 22:03:51 +03:00 committed by GitHub
commit 90f2c158ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,7 +10,7 @@ buildPythonPackage rec {
version = "0.10.0";
format = "setuptools";
pname = "piep";
disabled = isPy3k;
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;