depot/third_party/nixpkgs/pkgs/development/python-modules/inifile/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

23 lines
467 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 = "Small INI library for Python";
homepage = "https://github.com/mitsuhiko/python-inifile";
license = licenses.bsd0;
maintainers = [ ];
};
}