Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python3Packages.plotext: init at 5.2.8

+32
+30
pkgs/development/python-modules/plotext/default.nix
··· 1 + { buildPythonPackage 2 + , fetchFromGitHub 3 + , lib 4 + }: 5 + 6 + buildPythonPackage rec { 7 + pname = "plotext"; 8 + version = "5.2.8"; 9 + format = "setuptools"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "piccolomo"; 13 + repo = pname; 14 + rev = "refs/tags/${version}"; 15 + hash = "sha256-V7N7p5RxLKYLmJeojikYJ/tT/IpVGzG3ZPVvUisDAVs="; 16 + }; 17 + 18 + # Package does not have a conventional test suite that can be run with either 19 + # `pytestCheckHook` or the standard setuptools testing situation. 20 + doCheck = false; 21 + 22 + pythonImportsCheck = [ "plotext" ]; 23 + 24 + meta = with lib; { 25 + description = "Plotting directly in the terminal"; 26 + homepage = "https://github.com/piccolomo/plotext"; 27 + license = licenses.mit; 28 + maintainers = with maintainers; [ samuela ]; 29 + }; 30 + }
+2
pkgs/top-level/python-packages.nix
··· 7143 7143 7144 7144 plone-testing = callPackage ../development/python-modules/plone-testing { }; 7145 7145 7146 + plotext = callPackage ../development/python-modules/plotext { }; 7147 + 7146 7148 plotly = callPackage ../development/python-modules/plotly { }; 7147 7149 7148 7150 plotnine = callPackage ../development/python-modules/plotnine { };