fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
25 lines
515 B
Nix
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 ];
|
|
};
|
|
}
|