1{ buildPythonPackage, lib, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "fields"; 5 version = "5.0.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 hash = "sha256-MdSqA9jUTjXfE8Qx3jUTaZfwR6kkpZfYT3vCCeG+Vyc="; 10 }; 11 12 pythonImportsCheck = [ "fields" ]; 13 14 meta = with lib; { 15 description = "Container class boilerplate killer"; 16 homepage = "https://github.com/ionelmc/python-fields"; 17 license = licenses.bsd2; 18 maintainers = [ maintainers.sheepforce ]; 19 }; 20}