Files
nixpkgs/pkgs/development/python-modules/termplotlib/default.nix
Winter a19cd4ffb1 Revert "treewide: replace rev with tag"
This reverts commit 65a333600d.

This wasn't tested for correctness with something like fodwatch [0],
and should not have been (self-)merged so quickly, especially without
further review.

It also resulted in the breakage of at least one package [1] (and that's
the one we know of and was caught).

A few packages that were updated in between this commit and this revert
were not reverted back to using `rev`, but other than that, this is a
1:1 revert.

[0]: https://codeberg.org/raphaelr/fodwatch
[1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e458
2025-04-08 02:57:25 -04:00

56 lines
1.1 KiB
Nix

{
lib,
replaceVars,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
exdown,
numpy,
gnuplot,
setuptools,
}:
buildPythonPackage rec {
pname = "termplotlib";
version = "0.3.9";
src = fetchFromGitHub {
owner = "nschloe";
repo = pname;
rev = "v${version}";
sha256 = "1qfrv2w7vb2bbjvd5lqfq57c23iqkry0pwmif1ha3asmz330rja1";
};
nativeBuildInputs = [ setuptools ];
format = "pyproject";
nativeCheckInputs = [
pytestCheckHook
exdown
];
pythonImportsCheck = [ "termplotlib" ];
propagatedBuildInputs = [ numpy ];
patches = [
(replaceVars ./gnuplot-subprocess.patch {
gnuplot = "${gnuplot.out}/bin/gnuplot";
})
];
# The current gnuplot version renders slightly different test
# graphs, with emphasis on slightly. The plots are still correct.
# Tests pass on gnuplot 5.4.1, but fail on 5.4.2.
disabledTests = [
"test_plot"
"test_nolabel"
];
meta = with lib; {
description = "matplotlib for your terminal";
homepage = "https://github.com/nschloe/termplotlib";
license = with licenses; [ gpl3Plus ];
maintainers = with maintainers; [ thoughtpolice ];
};
}