summary refs log tree commit diff
path: root/pkgs/development/python-modules/yanc/default.nix
blob: 6d4a3b41fbccbc42a7b0109869a9252f17710cd4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, 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 lib; {
    description = "Yet another nose colorer";
    homepage = "https://github.com/0compute/yanc";
    license = licenses.gpl3;
    maintainers = with maintainers; [ jluttine ];
  };
}