2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-16 22:25:00 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "inifile";
|
2021-10-15 11:08:55 +01:00
|
|
|
version = "0.4.1";
|
2018-10-16 22:25:00 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-10-15 11:08:55 +01:00
|
|
|
sha256 = "d9e5eb4708ebf13353c4cfce798ad47890a8bcc5fbae04630223d15d79f55e96";
|
2018-10-16 22:25:00 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-16 22:25:00 +01:00
|
|
|
description = "A small INI library for Python";
|
|
|
|
homepage = "https://github.com/mitsuhiko/python-inifile";
|
|
|
|
license = licenses.bsd0;
|
2021-08-02 23:55:58 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2018-10-16 22:25:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|