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