biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / yaspin / default.nix
blobe66d8fc3cd4524221f9ef65029c32a9547aaf91a
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   poetry-core,
6   pytest-xdist,
7   pytestCheckHook,
8   pythonOlder,
9   termcolor,
12 buildPythonPackage rec {
13   pname = "yaspin";
14   version = "3.0.1";
15   format = "pyproject";
17   disabled = pythonOlder "3.7";
19   src = fetchFromGitHub {
20     owner = "pavdmyt";
21     repo = pname;
22     rev = "refs/tags/v${version}";
23     hash = "sha256-cYTCJyHZ9yNg6BfpZ+g3P0yMWFhYUxgYtlbANNgfohQ=";
24   };
26   nativeBuildInputs = [ poetry-core ];
28   propagatedBuildInputs = [ termcolor ];
30   nativeCheckInputs = [
31     pytest-xdist
32     pytestCheckHook
33   ];
35   # tests assert for \033 which gets turned off in termcolor when TERM dumb is used which is used by nix
36   preCheck = ''
37     export FORCE_COLOR=1
38   '';
40   pythonImportsCheck = [ "yaspin" ];
42   meta = with lib; {
43     description = "Yet Another Terminal Spinner";
44     homepage = "https://github.com/pavdmyt/yaspin";
45     license = licenses.mit;
46     maintainers = with maintainers; [ samuela ];
47   };