2021-06-04 09:07:49 +00:00
|
|
|
{ lib, stdenv, buildPythonPackage, fetchPypi, setuptools-scm }:
|
2020-06-15 15:56:04 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "configparser";
|
|
|
|
version = "4.0.2";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "c7d282687a5308319bf3d2e7706e575c635b0a470342641c93bea0ea3b5331df";
|
|
|
|
};
|
|
|
|
|
|
|
|
# No tests available
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-06-04 09:07:49 +00:00
|
|
|
nativeBuildInputs = [ setuptools-scm ];
|
2020-06-15 15:56:04 +00:00
|
|
|
|
|
|
|
preConfigure = ''
|
2024-09-26 11:04:55 +00:00
|
|
|
export LC_ALL=${if stdenv.hostPlatform.isDarwin then "en_US" else "C"}.UTF-8
|
2020-06-15 15:56:04 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Updated configparser from Python 3.7 for Python 2.6+";
|
2020-06-15 15:56:04 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
homepage = "https://github.com/jaraco/configparser";
|
|
|
|
};
|
2020-09-25 04:45:31 +00:00
|
|
|
}
|