1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 07:00:43 +00:00

python: configparser: 3.5.0 -> 3.7.1

This commit is contained in:
Frederik Rietdijk 2019-02-14 08:37:13 +01:00
parent 6e87bed9c9
commit d80c0548b9

View file

@ -2,22 +2,23 @@
buildPythonPackage rec {
pname = "configparser";
version = "3.5.0";
version = "3.7.1";
src = fetchPypi {
inherit pname version;
sha256 = "0fi7vf09vi1588jd8f16a021m5y6ih2hy7rpbjb408xw45qb822k";
sha256 = "5bd5fa2a491dc3cfe920a3f2a107510d65eceae10e9c6e547b90261a4710df32";
};
# 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
];
preConfigure = ''
export LC_ALL=C.UTF-8
'';
meta = with stdenv.lib; {
description = "Updated configparser from Python 3.7 for Python 2.6+.";
license = licenses.mit;
homepage = https://github.com/jaraco/configparser;
};
}