1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-05-03 12:07:02 +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 { buildPythonPackage rec {
pname = "configparser"; pname = "configparser";
version = "3.5.0"; version = "3.7.1";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "0fi7vf09vi1588jd8f16a021m5y6ih2hy7rpbjb408xw45qb822k"; sha256 = "5bd5fa2a491dc3cfe920a3f2a107510d65eceae10e9c6e547b90261a4710df32";
}; };
# No tests available # No tests available
doCheck = false; doCheck = false;
# Fix issue when used together with other namespace packages preConfigure = ''
# https://github.com/NixOS/nixpkgs/issues/23855 export LC_ALL=C.UTF-8
patches = [ '';
./0001-namespace-fix.patch
];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Updated configparser from Python 3.7 for Python 2.6+.";
license = licenses.mit;
homepage = https://github.com/jaraco/configparser;
}; };
} }