blob: 4f3b179e63dca67df159ddd25f7fbf7b83e98314 (
plain) (
blame)
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
|
{ lib
, buildPythonPackage
, fetchPypi
, numpy
, matplotlib
, pytest
, scipy
}:
buildPythonPackage rec {
pname = "tadasets";
version = "0.2.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-PWbq+dCQ8mGR81lolBDSArxjkTdis1ZpLY0MqZfZ66I=";
};
propagatedBuildInputs = [
numpy
matplotlib
];
nativeCheckInputs = [
pytest
scipy
];
meta = with lib; {
description = "Great data sets for Topological Data Analysis";
homepage = "https://tadasets.scikit-tda.org";
license = licenses.mit;
maintainers = [ ];
};
}
|