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