about summary refs log tree commit diff
path: root/pkgs/development/python-modules/inifile/default.nix
blob: 0e9cb91ded9ebc3619069973cc0f4c4474e4449c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "inifile";
  version = "0.4.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "d9e5eb4708ebf13353c4cfce798ad47890a8bcc5fbae04630223d15d79f55e96";
  };

  meta = with lib; {
    description = "A small INI library for Python";
    homepage    = "https://github.com/mitsuhiko/python-inifile";
    license     = licenses.bsd0;
    maintainers = with maintainers; [ ];
  };

}