linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / blessings / default.nix
blob00b7fd9a63d7533079ed909fc15c61177702591a
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , six
5 , nose
6 }:
8 buildPythonPackage rec {
9   pname = "blessings";
10   version = "1.7";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "98e5854d805f50a5b58ac2333411b0482516a8210f23f43308baeb58d77c157d";
15   };
17   # 4 failing tests, 2to3
18   doCheck = false;
20   propagatedBuildInputs = [ six ];
21   checkInputs = [ nose ];
23   checkPhase = ''
24     nosetests
25   '';
27   meta = with lib; {
28     homepage = "https://github.com/erikrose/blessings";
29     description = "A thin, practical wrapper around terminal coloring, styling, and positioning";
30     license = licenses.mit;
31     maintainers = with maintainers; [ domenkozar ];
32   };