summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/inifile/default.nix
blob: 98e06c3108e0f535d73cddf68b2e9fa2949d8c58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  lib,
  buildPythonPackage,
  fetchPypi,
}:

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

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

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