a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
27 lines
636 B
Nix
27 lines
636 B
Nix
{ lib, buildPythonPackage, pythonOlder, fetchPypi, nose }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "yanc";
|
|
version = "0.3.3";
|
|
|
|
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 ];
|
|
};
|
|
}
|