blob: 8cda01951587bb8412014b4fa789fd2a05f36437 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
matplotlib,
numpy,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "dufte";
version = "0.2.29";
pyproject = true;
src = fetchFromGitHub {
owner = "nschloe";
repo = "dufte";
rev = "v${version}";
hash = "sha256:0ccsmpj160xj6w503a948aw8icj55mw9414xnmijmmjvlwhm0p48";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
matplotlib
numpy
];
preCheck = ''
export HOME=$(mktemp -d)
mkdir -p $HOME/.config/matplotlib
echo "backend: ps" > $HOME/.config/matplotlib/matplotlibrc
ln -s $HOME/.config/matplotlib $HOME/.matplotlib
'';
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "dufte" ];
meta = {
description = "Clean matplotlib plots";
homepage = "https://github.com/nschloe/dufte";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ ris ];
};
}
|