My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/yanc/default.nix

27 lines
630 B

{ 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";
checkInputs = [ nose ];
checkPhase = ''
nosetests .
'';
meta = with lib; {
description = "Yet another nose colorer";
homepage = "https://github.com/0compute/yanc";
license = licenses.gpl3;
maintainers = with maintainers; [ jluttine ];
};
}