pythonPackages.tadasets: init at 0.0.4

This commit is contained in:
Chris Ostrouchov 2019-07-12 20:36:14 -04:00 committed by Frederik Rietdijk
parent 660e7c7e34
commit d621233fa4
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,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 ];
};
}

View File

@ -4545,6 +4545,8 @@ in {
tabulate = callPackage ../development/python-modules/tabulate { };
tadasets = callPackage ../development/python-modules/tadasets { };
tempita = callPackage ../development/python-modules/tempita { };
terminado = callPackage ../development/python-modules/terminado { };