2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchFromGitHub, pytestrunner, pytest, scipy }:
|
2018-07-31 23:05:21 +01:00
|
|
|
|
|
|
|
buildPythonPackage {
|
|
|
|
pname = "fastpair";
|
|
|
|
version = "2016-07-05";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "carsonfarmer";
|
|
|
|
repo = "fastpair";
|
|
|
|
rev = "92364962f6b695661f35a117bf11f96584128a8d";
|
|
|
|
sha256 = "1pv9sxycxdk567s5gs947rhlqngrb9nn9yh4dhdvg1ix1i8dca71";
|
|
|
|
};
|
|
|
|
|
2019-07-13 10:26:00 +01:00
|
|
|
nativeBuildInputs = [ pytestrunner ];
|
2018-07-31 23:05:21 +01:00
|
|
|
|
2019-07-13 10:26:00 +01:00
|
|
|
checkInputs = [ pytest ];
|
2018-07-31 23:05:21 +01:00
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
scipy
|
|
|
|
];
|
|
|
|
|
2019-07-13 10:26:00 +01:00
|
|
|
# Does not support pytest 4 https://github.com/carsonfarmer/fastpair/issues/14
|
|
|
|
doCheck = false;
|
|
|
|
|
2018-07-31 23:05:21 +01:00
|
|
|
checkPhase = ''
|
2019-04-27 15:59:25 +01:00
|
|
|
pytest fastpair
|
2018-07-31 23:05:21 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/carsonfarmer/fastpair";
|
2018-07-31 23:05:21 +01:00
|
|
|
description = "Data-structure for the dynamic closest-pair problem";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ cmcdragonkai ];
|
|
|
|
};
|
|
|
|
}
|