depot/third_party/nixpkgs/pkgs/development/python-modules/iniparse/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

34 lines
659 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 = with lib; {
description = "Accessing and Modifying INI files";
homepage = "https://github.com/candlepin/python-iniparse";
license = licenses.mit;
maintainers = with maintainers; [ danbst ];
};
}