Merge pull request #201752 from samuela/samuela/plotext

python3Packages.plotext: init at 5.2.8
This commit is contained in:
Fabian Affolter
2022-11-19 09:31:29 +01:00
committed by GitHub
2 changed files with 32 additions and 0 deletions
@@ -0,0 +1,30 @@
{ buildPythonPackage
, fetchFromGitHub
, lib
}:
buildPythonPackage rec {
pname = "plotext";
version = "5.2.8";
format = "setuptools";
src = fetchFromGitHub {
owner = "piccolomo";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-V7N7p5RxLKYLmJeojikYJ/tT/IpVGzG3ZPVvUisDAVs=";
};
# Package does not have a conventional test suite that can be run with either
# `pytestCheckHook` or the standard setuptools testing situation.
doCheck = false;
pythonImportsCheck = [ "plotext" ];
meta = with lib; {
description = "Plotting directly in the terminal";
homepage = "https://github.com/piccolomo/plotext";
license = licenses.mit;
maintainers = with maintainers; [ samuela ];
};
}
+2
View File
@@ -7145,6 +7145,8 @@ self: super: with self; {
plone-testing = callPackage ../development/python-modules/plone-testing { };
plotext = callPackage ../development/python-modules/plotext { };
plotly = callPackage ../development/python-modules/plotly { };
plotnine = callPackage ../development/python-modules/plotnine { };