blob: f2a707ff3226d849d2619eaf8748a71ee79a68de (
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
54
55
56
57
|
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
looseversion,
matplotlib,
numba,
numpy,
pandas,
pytestCheckHook,
pyyaml,
scipy,
}:
buildPythonPackage rec {
pname = "trackpy";
version = "0.7";
format = "setuptools";
src = fetchFromGitHub {
owner = "soft-matter";
repo = "trackpy";
tag = "v${version}";
hash = "sha256-3e+gHdn/4n8T78eA3Gjz1TdSI4Hd935U2pqd8wG+U0M=";
};
propagatedBuildInputs = [
looseversion
matplotlib
numba
numpy
pandas
pyyaml
scipy
];
nativeCheckInputs = [ pytestCheckHook ];
preCheck = lib.optionalString stdenv.hostPlatform.isDarwin ''
# specifically needed for darwin
export HOME=$(mktemp -d)
mkdir -p $HOME/.matplotlib
echo "backend: ps" > $HOME/.matplotlib/matplotlibrc
'';
pythonImportsCheck = [ "trackpy" ];
meta = {
description = "Particle-tracking toolkit";
homepage = "https://github.com/soft-matter/trackpy";
changelog = "https://github.com/soft-matter/trackpy/releases/tag/${src.tag}";
license = lib.licenses.bsd3;
maintainers = [ ];
broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64);
};
}
|