biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / fields / default.nix
blobde8a7250da9586397d42b230fb8460ced8091d5e
2   buildPythonPackage,
3   lib,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "fields";
9   version = "5.0.0";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-MdSqA9jUTjXfE8Qx3jUTaZfwR6kkpZfYT3vCCeG+Vyc=";
15   };
17   pythonImportsCheck = [ "fields" ];
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   };