nixpkgs/pkgs/development/python-modules/yanc/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

29 lines
661 B
Nix

{ lib, buildPythonPackage, pythonOlder, fetchPypi, nose }:
buildPythonPackage rec {
pname = "yanc";
version = "0.3.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "0z35bkk9phs40lf5061k1plhjdl5fskm0dmdikrsqi1bjihnxp8w";
};
# Tests fail on Python>=3.5. See: https://github.com/0compute/yanc/issues/10
doCheck = pythonOlder "3.5";
nativeCheckInputs = [ nose ];
checkPhase = ''
nosetests .
'';
meta = with lib; {
description = "Yet another nose colorer";
homepage = "https://github.com/0compute/yanc";
license = licenses.gpl3;
maintainers = with maintainers; [ jluttine ];
};
}