pythonPackages.inifile: refactor move to python-modules
This commit is contained in:
parent
7a35ae188f
commit
45f47bd75f
22
pkgs/development/python-modules/inifile/default.nix
Normal file
22
pkgs/development/python-modules/inifile/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "inifile";
|
||||
version = "0.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0zgd53czc1irwx6b5zip8xlmyfr40hz2pd498d8yv61znj6lm16h";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A small INI library for Python";
|
||||
homepage = "https://github.com/mitsuhiko/python-inifile";
|
||||
license = licenses.bsd0;
|
||||
maintainers = with maintainers; [ vozz ];
|
||||
};
|
||||
|
||||
}
|
@ -2486,21 +2486,7 @@ in {
|
||||
|
||||
infoqscraper = callPackage ../development/python-modules/infoqscraper { };
|
||||
|
||||
inifile = buildPythonPackage rec {
|
||||
name = "inifile-0.3";
|
||||
|
||||
meta = {
|
||||
description = "A small INI library for Python";
|
||||
homepage = "https://github.com/mitsuhiko/python-inifile";
|
||||
license = "BSD";
|
||||
maintainers = with maintainers; [ vozz ];
|
||||
};
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/i/inifile/${name}.tar.gz";
|
||||
sha256 = "0zgd53czc1irwx6b5zip8xlmyfr40hz2pd498d8yv61znj6lm16h";
|
||||
};
|
||||
};
|
||||
inifile = callPackage ../development/python-modules/inifile { };
|
||||
|
||||
interruptingcow = callPackage ../development/python-modules/interruptingcow {};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user