depot/third_party/nixpkgs/pkgs/development/python-modules/tadasets/default.nix

38 lines
611 B
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchPypi,
numpy,
matplotlib,
pytest,
scipy,
}:
buildPythonPackage rec {
pname = "tadasets";
version = "0.2.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-PWbq+dCQ8mGR81lolBDSArxjkTdis1ZpLY0MqZfZ66I=";
};
propagatedBuildInputs = [
numpy
matplotlib
];
nativeCheckInputs = [
pytest
scipy
];
meta = with lib; {
description = "Great data sets for Topological Data Analysis";
homepage = "https://tadasets.scikit-tda.org";
license = licenses.mit;
maintainers = [ ];
};
}