nixpkgs/pkgs/development/python-modules/configparser/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
709 B
Nix
Raw Normal View History

{ lib, stdenv, buildPythonPackage, fetchPypi, pytestCheckHook, setuptools-scm }:
buildPythonPackage rec {
pname = "configparser";
version = "5.3.0";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-i+JngktUHAmwjbEkkX9Iq1JabD6DcBHzEweBoiTFcJA=";
};
nativeBuildInputs = [ setuptools-scm ];
2019-10-24 06:47:28 +00:00
nativeCheckInputs = [ pytestCheckHook ];
2019-02-14 07:37:13 +00:00
preConfigure = ''
export LC_ALL=${if stdenv.isDarwin then "en_US" else "C"}.UTF-8
2019-02-14 07:37:13 +00:00
'';
meta = with lib; {
2019-02-14 07:37:13 +00:00
description = "Updated configparser from Python 3.7 for Python 2.6+.";
homepage = "https://github.com/jaraco/configparser";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}