My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/fields/default.nix

20 lines
485 B

{ buildPythonPackage, lib, fetchPypi }:
buildPythonPackage rec {
pname = "fields";
version = "5.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "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 ];
};
}