linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / configparser / 4.nix
blobcbef6fd2ce7fe94986346a9fe462f8dc195897eb
1 { lib, stdenv, buildPythonPackage, fetchPypi, setuptools_scm }:
3 buildPythonPackage rec {
4   pname = "configparser";
5   version = "4.0.2";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "c7d282687a5308319bf3d2e7706e575c635b0a470342641c93bea0ea3b5331df";
10   };
12   # No tests available
13   doCheck = false;
15   nativeBuildInputs = [ setuptools_scm ];
17   preConfigure = ''
18     export LC_ALL=${if stdenv.isDarwin then "en_US" else "C"}.UTF-8
19   '';
21   meta = with lib; {
22     description = "Updated configparser from Python 3.7 for Python 2.6+.";
23     license = licenses.mit;
24     homepage = "https://github.com/jaraco/configparser";
25   };