1{ lib 2, buildPythonPackage 3, fetchPypi 4, numpy 5, matplotlib 6, pytest 7, scipy 8}: 9 10buildPythonPackage rec { 11 pname = "tadasets"; 12 version = "0.0.4"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "a0e6c14678750315febd97fcf334bbbfd2695ebd91b4fe7707bb1220d7348416"; 17 }; 18 19 propagatedBuildInputs = [ 20 numpy 21 matplotlib 22 ]; 23 24 checkInputs = [ 25 pytest 26 scipy 27 ]; 28 29 meta = with lib; { 30 description = "Great data sets for Topological Data Analysis"; 31 homepage = "https://tadasets.scikit-tda.org"; 32 license = licenses.mit; 33 maintainers = [ maintainers.costrouc ]; 34 }; 35}