depot/third_party/nixpkgs/pkgs/development/python-modules/inifile/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

23 lines
487 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "inifile";
version = "0.4.1";
format = "setuptools";
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; [ ];
};
}