Merge pull request #308301 from fabaff/fastpair-remove

python311Packages.fastpair: remove
This commit is contained in:
Nick Cao 2024-05-02 09:20:45 -04:00 committed by GitHub
commit 9c2a5d86e0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 1 additions and 44 deletions

View File

@ -1,42 +0,0 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, scipy
, pythonOlder
}:
buildPythonPackage {
pname = "fastpair";
version = "unstable-2021-05-19";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "carsonfarmer";
repo = "fastpair";
rev = "d3170fd7e4d6e95312e7e1cb02e84077a3f06379";
hash = "sha256-vSb6o0XvHlzev2+uQKUI66wM39ZNqDsppEc8rlB+H9E=";
};
postPatch = ''
substituteInPlace setup.py \
--replace '"pytest-runner",' ""
'';
nativeCheckInputs = [
pytestCheckHook
];
propagatedBuildInputs = [
scipy
];
meta = with lib; {
description = "Data-structure for the dynamic closest-pair problem";
homepage = "https://github.com/carsonfarmer/fastpair";
license = licenses.mit;
maintainers = with maintainers; [ cmcdragonkai rakesh4g ];
};
}

View File

@ -150,6 +150,7 @@ mapAliases ({
factory_boy = factory-boy; # added 2023-10-08
fake_factory = throw "fake_factory has been removed because it is unused and deprecated by upstream since 2016."; # added 2022-05-30
fastnlo_toolkit = fastnlo-toolkit; # added 2024-01-03
fastpair = throw "fastpair is unmaintained upstream and has therefore been removed"; # added 2024-05-01
faulthandler = throw "faulthandler is built into ${python.executable}"; # added 2021-07-12
inherit (super.pkgs) fetchPypi; # added 2023-05-25
filebrowser_safe = filebrowser-safe; # added 2024-01-03

View File

@ -4115,8 +4115,6 @@ self: super: with self; {
fastnumbers = callPackage ../development/python-modules/fastnumbers { };
fastpair = callPackage ../development/python-modules/fastpair { };
fastparquet = callPackage ../development/python-modules/fastparquet { };
fastpbkdf2 = callPackage ../development/python-modules/fastpbkdf2 { };