tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.plotext: init at 5.2.8
Samuel Ainsworth
3 years ago
374e8d3f
e18cc829
+32
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
plotext
default.nix
top-level
python-packages.nix
+30
pkgs/development/python-modules/plotext/default.nix
···
1
1
+
{ buildPythonPackage
2
2
+
, fetchFromGitHub
3
3
+
, lib
4
4
+
}:
5
5
+
6
6
+
buildPythonPackage rec {
7
7
+
pname = "plotext";
8
8
+
version = "5.2.8";
9
9
+
format = "setuptools";
10
10
+
11
11
+
src = fetchFromGitHub {
12
12
+
owner = "piccolomo";
13
13
+
repo = pname;
14
14
+
rev = "refs/tags/${version}";
15
15
+
hash = "sha256-V7N7p5RxLKYLmJeojikYJ/tT/IpVGzG3ZPVvUisDAVs=";
16
16
+
};
17
17
+
18
18
+
# Package does not have a conventional test suite that can be run with either
19
19
+
# `pytestCheckHook` or the standard setuptools testing situation.
20
20
+
doCheck = false;
21
21
+
22
22
+
pythonImportsCheck = [ "plotext" ];
23
23
+
24
24
+
meta = with lib; {
25
25
+
description = "Plotting directly in the terminal";
26
26
+
homepage = "https://github.com/piccolomo/plotext";
27
27
+
license = licenses.mit;
28
28
+
maintainers = with maintainers; [ samuela ];
29
29
+
};
30
30
+
}
+2
pkgs/top-level/python-packages.nix
···
7143
7143
7144
7144
plone-testing = callPackage ../development/python-modules/plone-testing { };
7145
7145
7146
7146
+
plotext = callPackage ../development/python-modules/plotext { };
7147
7147
+
7146
7148
plotly = callPackage ../development/python-modules/plotly { };
7147
7149
7148
7150
plotnine = callPackage ../development/python-modules/plotnine { };