pythonPackages.iniparse: refactor move to python-modules
This commit is contained in:
parent
202f7192e3
commit
05887b8eed
30
pkgs/development/python-modules/iniparse/default.nix
Normal file
30
pkgs/development/python-modules/iniparse/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, python
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "iniparse";
|
||||||
|
version = "0.4";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0m60k46vr03x68jckachzsipav0bwhhnqb8715hm1cngs89fxhdb";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
${python.interpreter} runtests.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
# Does not install tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Accessing and Modifying INI files";
|
||||||
|
homepage = http://code.google.com/p/iniparse/;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ danbst ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -1900,29 +1900,7 @@ in {
|
|||||||
|
|
||||||
itsdangerous = callPackage ../development/python-modules/itsdangerous { };
|
itsdangerous = callPackage ../development/python-modules/itsdangerous { };
|
||||||
|
|
||||||
iniparse = buildPythonPackage rec {
|
iniparse = callPackage ../development/python-modules/iniparse { };
|
||||||
|
|
||||||
name = "iniparse-${version}";
|
|
||||||
version = "0.4";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/i/iniparse/iniparse-${version}.tar.gz";
|
|
||||||
sha256 = "0m60k46vr03x68jckachzsipav0bwhhnqb8715hm1cngs89fxhdb";
|
|
||||||
};
|
|
||||||
|
|
||||||
checkPhase = ''
|
|
||||||
${python.interpreter} runtests.py
|
|
||||||
'';
|
|
||||||
|
|
||||||
# Does not install tests
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
|
||||||
description = "Accessing and Modifying INI files";
|
|
||||||
license = licenses.mit;
|
|
||||||
maintainers = with maintainers; [ danbst ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
i3-py = buildPythonPackage rec {
|
i3-py = buildPythonPackage rec {
|
||||||
version = "0.6.4";
|
version = "0.6.4";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user