nixpkgs/pkgs/development/python-modules/spacy-loggers/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
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
2023-12-07 17:46:49 +01:00

36 lines
713 B
Nix

{ lib
, callPackage
, fetchPypi
, buildPythonPackage
, wandb
, wasabi
}:
buildPythonPackage rec {
pname = "spacy-loggers";
version = "1.0.5";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-1gsL2/kVpg5RbMLmU7rv+Ubwz8RhtFLRGk1UWMb+XyQ=";
};
propagatedBuildInputs = [
wandb
wasabi
];
pythonImportsCheck = [ "spacy_loggers" ];
# skipping the checks, becaus it requires a cycle dependency to spacy as well.
doCheck = false;
meta = with lib; {
description = "Logging utilities for spaCy";
homepage = "https://github.com/explosion/spacy-loggers";
license = licenses.mit;
maintainers = with maintainers; [ stunkymonkey ];
};
}