python3.pkgs.fields: init at 5.0.0
fields: expose package fields: formatting fields: platforms fields: platforms fields: remove redundant platform
This commit is contained in:
parent
2a9baed906
commit
dbd7ba5f5f
2 changed files with 22 additions and 0 deletions
pkgs
20
pkgs/development/python-modules/fields/default.nix
Normal file
20
pkgs/development/python-modules/fields/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{ 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2697,6 +2697,8 @@ in {
|
||||||
|
|
||||||
fido2 = callPackage ../development/python-modules/fido2 { };
|
fido2 = callPackage ../development/python-modules/fido2 { };
|
||||||
|
|
||||||
|
fields = callPackage ../development/python-modules/fields { };
|
||||||
|
|
||||||
filebrowser_safe = callPackage ../development/python-modules/filebrowser_safe { };
|
filebrowser_safe = callPackage ../development/python-modules/filebrowser_safe { };
|
||||||
|
|
||||||
filebytes = callPackage ../development/python-modules/filebytes { };
|
filebytes = callPackage ../development/python-modules/filebytes { };
|
||||||
|
|
Loading…
Reference in a new issue