mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
37 lines
615 B
Nix
37 lines
615 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, numpy
|
|
, matplotlib
|
|
, pytest
|
|
, scipy
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tadasets";
|
|
version = "0.0.4";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "a0e6c14678750315febd97fcf334bbbfd2695ebd91b4fe7707bb1220d7348416";
|
|
};
|
|
|
|
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 = [ ];
|
|
};
|
|
}
|