75e41e34ed
I think the disabled condition was accidentally modified in ecc939eb194b49f86707c8a215b60968f9b8a335 configparser is a backport of 3.2 functionality. While it is only intended for Python < 3.2, it works fine with other versions. Even with pypy, nowadays.
24 lines
489 B
Nix
24 lines
489 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, isPy3k }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "configparser";
|
|
version = "3.5.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0fi7vf09vi1588jd8f16a021m5y6ih2hy7rpbjb408xw45qb822k";
|
|
};
|
|
|
|
# No tests available
|
|
doCheck = false;
|
|
|
|
# Fix issue when used together with other namespace packages
|
|
# https://github.com/NixOS/nixpkgs/issues/23855
|
|
patches = [
|
|
./0001-namespace-fix.patch
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
};
|
|
}
|