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

37 lines
602 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 = [ ];
};
}