python312Packages.pyemd: refactor

This commit is contained in:
Fabian Affolter
2025-01-05 14:26:10 +01:00
parent 846644b25b
commit 1eaa2ce747
@@ -1,48 +1,50 @@
{
lib,
buildPythonPackage,
pythonOlder,
fetchPypi,
cython,
fetchPypi,
numpy,
oldest-supported-numpy,
packaging,
setuptools,
setuptools-scm,
wheel,
numpy,
pytestCheckHook,
pythonOlder,
setuptools-scm,
setuptools,
}:
buildPythonPackage rec {
pname = "pyemd";
version = "1.0.0";
pyproject = true;
disabled = pythonOlder "3.7";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-tCta57LRWx1N7mOBDqeYo5IX6Kdre0nA62OoTg/ZAP4=";
};
build-system = [
setuptools
setuptools-scm
];
nativeBuildInputs = [
cython
numpy
oldest-supported-numpy
packaging
setuptools
setuptools-scm
wheel
];
propagatedBuildInputs = [ numpy ];
dependencies = [ 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";
changelog = "https://github.com/wmayner/pyemd/releases/tag/${version}";
license = licenses.mit;
maintainers = [ ];
};
}