pythonPackages.yanc: init at 0.3.3

This commit is contained in:
Jaakko Luttinen 2018-10-27 15:00:51 +03:00 committed by Maximilian Bosch
parent 0f81ac7737
commit 5d2ac2cd06
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E
2 changed files with 29 additions and 0 deletions

@ -0,0 +1,27 @@
{ stdenv, buildPythonPackage, pythonOlder, fetchPypi, nose }:
buildPythonPackage rec {
pname = "yanc";
version = "0.3.3";
# Tests fail on Python>=3.5. See: https://github.com/0compute/yanc/issues/10
disabled = !(pythonOlder "3.5");
checkInputs = [ nose ];
src = fetchPypi {
inherit pname version;
sha256 = "0z35bkk9phs40lf5061k1plhjdl5fskm0dmdikrsqi1bjihnxp8w";
};
checkPhase = ''
nosetests .
'';
meta = with stdenv.lib; {
description = "Yet another nose colorer";
homepage = https://github.com/0compute/yanc;
license = licenses.gpl3;
maintainers = with maintainers; [ jluttine ];
};
}

@ -4849,6 +4849,8 @@ in {
yamllint = callPackage ../development/python-modules/yamllint { };
yanc = callPackage ../development/python-modules/yanc { };
yarl = callPackage ../development/python-modules/yarl { };
suseapi = callPackage ../development/python-modules/suseapi { };