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

25 lines
515 B
Nix

{
buildPythonPackage,
lib,
fetchPypi,
}:
buildPythonPackage rec {
pname = "fields";
version = "5.0.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-MdSqA9jUTjXfE8Qx3jUTaZfwR6kkpZfYT3vCCeG+Vyc=";
};
pythonImportsCheck = [ "fields" ];
meta = with lib; {
description = "Container class boilerplate killer";
homepage = "https://github.com/ionelmc/python-fields";
license = licenses.bsd2;
maintainers = [ maintainers.sheepforce ];
};
}