567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
35 lines
657 B
Nix
35 lines
657 B
Nix
{
|
|
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 ];
|
|
};
|
|
}
|