blob: ce7f9a3162fa2018cc2323ba4d9821c230390262 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "configparser";
version = "7.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "jaraco";
repo = "configparser";
tag = "v${version}";
hash = "sha256-ZPoHnmD0YjY3+dUW1NKDJjNOVrUFNOjQyMqamOsS2RQ=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Updated configparser from Python 3.7 for Python 2.6+";
homepage = "https://github.com/jaraco/configparser";
license = licenses.mit;
maintainers = [ ];
};
}
|