1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "inifile";
8 version = "0.4.1";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "d9e5eb4708ebf13353c4cfce798ad47890a8bcc5fbae04630223d15d79f55e96";
13 };
14
15 meta = with lib; {
16 description = "A small INI library for Python";
17 homepage = "https://github.com/mitsuhiko/python-inifile";
18 license = licenses.bsd0;
19 maintainers = with maintainers; [ ];
20 };
21
22}