mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 17:23:08 +00:00
python311Packages.fastpair: remove pytest-runner
- adjust version - disable on unsupported Python releases - remove unneeded inputs
This commit is contained in:
parent
7721e0d2c1
commit
a3492a94ea
@ -1,27 +1,41 @@
|
|||||||
{ lib, buildPythonPackage, fetchFromGitHub, pytest-runner, pytest, scipy, pytestCheckHook }:
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pytestCheckHook
|
||||||
|
, scipy
|
||||||
|
, pythonOlder
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage {
|
buildPythonPackage {
|
||||||
pname = "fastpair";
|
pname = "fastpair";
|
||||||
version = "2021-05-19";
|
version = "unstable-2021-05-19";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "carsonfarmer";
|
owner = "carsonfarmer";
|
||||||
repo = "fastpair";
|
repo = "fastpair";
|
||||||
rev = "d3170fd7e4d6e95312e7e1cb02e84077a3f06379";
|
rev = "d3170fd7e4d6e95312e7e1cb02e84077a3f06379";
|
||||||
sha256 = "1l8zgr8awg27lhlkpa2dsvghrb7b12jl1bkgpzg5q7pg8nizl9mx";
|
hash = "sha256-vSb6o0XvHlzev2+uQKUI66wM39ZNqDsppEc8rlB+H9E=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pytest-runner ];
|
postPatch = ''
|
||||||
|
substituteInPlace setup.py \
|
||||||
|
--replace '"pytest-runner",' ""
|
||||||
|
'';
|
||||||
|
|
||||||
nativeCheckInputs = [ pytest pytestCheckHook ];
|
nativeCheckInputs = [
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
scipy
|
scipy
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/carsonfarmer/fastpair";
|
|
||||||
description = "Data-structure for the dynamic closest-pair problem";
|
description = "Data-structure for the dynamic closest-pair problem";
|
||||||
|
homepage = "https://github.com/carsonfarmer/fastpair";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ cmcdragonkai rakesh4g ];
|
maintainers = with maintainers; [ cmcdragonkai rakesh4g ];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user