pythonPackages.inifile: refactor move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
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 ];
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user