aerospike: 8.0.0.1 -> 8.0.0.2 (#380565)
[NixPkgs.git] / pkgs / development / python-modules / tadasets / default.nix
blobad437fd3497bb70be7632782ff6d577357d34a0f
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   numpy,
6   matplotlib,
7   pytest,
8   scipy,
9 }:
11 buildPythonPackage rec {
12   pname = "tadasets";
13   version = "0.2.1";
14   format = "setuptools";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-PWbq+dCQ8mGR81lolBDSArxjkTdis1ZpLY0MqZfZ66I=";
19   };
21   propagatedBuildInputs = [
22     numpy
23     matplotlib
24   ];
26   nativeCheckInputs = [
27     pytest
28     scipy
29   ];
31   meta = with lib; {
32     description = "Great data sets for Topological Data Analysis";
33     homepage = "https://tadasets.scikit-tda.org";
34     license = licenses.mit;
35     maintainers = [ ];
36   };