depot/third_party/nixpkgs/pkgs/development/python-modules/tadasets/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

37 lines
609 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
numpy,
matplotlib,
pytest,
scipy,
}:
buildPythonPackage rec {
pname = "tadasets";
version = "0.2.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "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 = [ ];
};
}