mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
22 lines
508 B
Nix
22 lines
508 B
Nix
{ buildPythonPackage, lib, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "fields";
|
|
version = "5.0.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "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 ];
|
|
};
|
|
}
|