mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
34 lines
638 B
Nix
34 lines
638 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, python
|
|
, six
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "iniparse";
|
|
version = "0.5";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "932e5239d526e7acb504017bb707be67019ac428a6932368e6851691093aa842";
|
|
};
|
|
|
|
checkPhase = ''
|
|
${python.interpreter} runtests.py
|
|
'';
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
# Does not install tests
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Accessing and Modifying INI files";
|
|
homepage = "https://github.com/candlepin/python-iniparse";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ danbst ];
|
|
};
|
|
|
|
}
|