evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / inifile / default.nix
bloba03e4070326f4de88c7c1f3e0d9e0c1bd9b55ba3
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "inifile";
9   version = "0.4.1";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "d9e5eb4708ebf13353c4cfce798ad47890a8bcc5fbae04630223d15d79f55e96";
15   };
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   };