silx: 2.1.1 -> 2.1.2 (#361612)
[NixPkgs.git] / pkgs / development / python-modules / halo / default.nix
bloba2372b73eb4cc8bfd888d56a2236831c1a08ae47
2   buildPythonPackage,
3   colorama,
4   fetchPypi,
5   isPy27,
6   lib,
7   log-symbols,
8   six,
9   spinners,
10   termcolor,
13 buildPythonPackage rec {
14   pname = "halo";
15   version = "0.0.31";
16   format = "setuptools";
17   disabled = isPy27;
19   src = fetchPypi {
20     inherit pname version;
21     sha256 = "1mn97h370ggbc9vi6x8r6akd5q8i512y6kid2nvm67g93r9a6rvv";
22   };
24   propagatedBuildInputs = [
25     colorama
26     log-symbols
27     termcolor
28     six
29     spinners
30   ];
32   # Tests are not included in the PyPI distribution and the git repo does not have tagged releases
33   doCheck = false;
34   pythonImportsCheck = [ "halo" ];
36   meta = with lib; {
37     description = "Beautiful Spinners for Terminal, IPython and Jupyter";
38     homepage = "https://github.com/manrajgrover/halo";
39     license = licenses.mit;
40     maintainers = with maintainers; [ urbas ];
41   };