pythonPackages.tadasets: init at 0.0.4
This commit is contained in:
parent
660e7c7e34
commit
d621233fa4
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in New Issue