blob: 18d922c90e48530945ef3c43d58f97ad4915350f (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
python,
six,
}:
buildPythonPackage rec {
pname = "iniparse";
version = "0.5";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "932e5239d526e7acb504017bb707be67019ac428a6932368e6851691093aa842";
};
checkPhase = ''
${python.interpreter} runtests.py
'';
propagatedBuildInputs = [ six ];
# Does not install tests
doCheck = false;
meta = {
description = "Accessing and Modifying INI files";
homepage = "https://github.com/candlepin/python-iniparse";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ danbst ];
};
}
|