f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
56 lines
951 B
Nix
56 lines
951 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
cython,
|
|
numpy,
|
|
oldest-supported-numpy,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.14.2";
|
|
pname = "hdmedians";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-tHrssWdx4boHNlVyVdgK4CQLCRVr/0NDId5VmzWawtY=";
|
|
};
|
|
|
|
patches = [
|
|
# https://github.com/daleroberts/hdmedians/pull/10
|
|
./replace-nose.patch
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace-fail "'nose>=1.0'," ""
|
|
'';
|
|
|
|
build-system = [
|
|
cython
|
|
oldest-supported-numpy
|
|
setuptools
|
|
];
|
|
|
|
dependencies = [ numpy ];
|
|
|
|
pythonImportsCheck = [ "hdmedians" ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
preCheck = ''
|
|
cd $out
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/daleroberts/hdmedians";
|
|
description = "High-dimensional medians";
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
};
|
|
}
|