Files
nixpkgs/pkgs/development/python-modules/pyemd/default.nix
T
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

49 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;
};
}