summary refs log tree commit diff
path: root/pkgs/development/python-modules/tadasets/default.nix
blob: 61f6b8664553451ca479178b3f6f813259edbd7b (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
{ lib
, buildPythonPackage
, fetchPypi
, numpy
, matplotlib
, pytest
, scipy
}:

buildPythonPackage rec {
  pname = "tadasets";
  version = "0.0.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "a0e6c14678750315febd97fcf334bbbfd2695ebd91b4fe7707bb1220d7348416";
  };

  propagatedBuildInputs = [
    numpy
    matplotlib
  ];

  checkInputs = [
    pytest
    scipy
  ];

  meta = with lib; {
    description = "Great data sets for Topological Data Analysis";
    homepage = https://tadasets.scikit-tda.org;
    license = licenses.mit;
    maintainers = [ maintainers.costrouc ];
  };
}