blob: 1fc443d9f9fcce71b43d6e1379370c595d7874a4 (
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
48
49
50
51
52
53
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
setuptools-scm,
# dependencies
matplotlib,
# tests
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "mplcursors";
version = "0.7";
pyproject = true;
src = fetchFromGitHub {
owner = "anntzer";
repo = "mplcursors";
rev = "v${version}";
hash = "sha256-bHBMi9xtawV50xPyR1vsGg+1KmTWjeErP9yh2tZxTIg=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
matplotlib
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"mplcursors"
];
meta = {
description = "Interactive data selection cursors for Matplotlib";
homepage = "https://github.com/anntzer/mplcursors";
changelog = "https://github.com/anntzer/mplcursors/blob/${src.rev}/CHANGELOG.rst";
license = lib.licenses.zlib;
maintainers = with lib.maintainers; [ doronbehar ];
};
}
|