depot/third_party/nixpkgs/pkgs/development/python-modules/pyemd/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

48 lines
865 B
Nix

{
lib,
buildPythonPackage,
pythonOlder,
fetchPypi,
cython,
oldest-supported-numpy,
packaging,
setuptools,
setuptools-scm,
wheel,
numpy,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pyemd";
version = "1.0.0";
disabled = pythonOlder "3.7";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-tCta57LRWx1N7mOBDqeYo5IX6Kdre0nA62OoTg/ZAP4=";
};
nativeBuildInputs = [
cython
numpy
oldest-supported-numpy
packaging
setuptools
setuptools-scm
wheel
];
propagatedBuildInputs = [ numpy ];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Python wrapper for Ofir Pele and Michael Werman's implementation of the Earth Mover's Distance";
homepage = "https://github.com/wmayner/pyemd";
license = licenses.mit;
};
}