python3Packages.pyjet: remove

+1 -37
-35
pkgs/development/python-modules/pyjet/default.nix
··· 1 - { lib, buildPythonPackage, pythonOlder, fetchFromGitHub, cython, pytest, importlib-resources, numpy }: 2 - 3 - buildPythonPackage rec { 4 - pname = "pyjet"; 5 - version = "1.9.0"; 6 - format = "setuptools"; 7 - 8 - # tests not included in pypi tarball 9 - src = fetchFromGitHub { 10 - owner = "scikit-hep"; 11 - repo = pname; 12 - rev = "refs/tags/${version}"; 13 - hash = "sha256-0g0fCf0FIwde5Vsc/BJxjgMcs5llpD8JqOgFbMjOooc="; 14 - }; 15 - 16 - nativeBuildInputs = [ cython ]; 17 - propagatedBuildInputs = [ 18 - numpy 19 - ] ++ lib.optionals (pythonOlder "3.9") [ 20 - importlib-resources 21 - ]; 22 - 23 - nativeCheckInputs = [ pytest ]; 24 - checkPhase = '' 25 - mv pyjet _pyjet 26 - pytest tests/ 27 - ''; 28 - 29 - meta = with lib; { 30 - homepage = "https://github.com/scikit-hep/pyjet"; 31 - description = "The interface between FastJet and NumPy"; 32 - license = licenses.gpl2Plus; 33 - maintainers = with maintainers; [ veprbl ]; 34 - }; 35 - }
+1
pkgs/top-level/python-aliases.nix
··· 331 331 pyblake2 = throw "pyblake2 is deprecated in favor of hashlib"; # added 2023-04-23 332 332 pyblock = throw "pyblock has been removed, since it is abandoned and broken"; # added 2023-06-20 333 333 pydrive = throw "pydrive is broken and deprecated and has been replaced with pydrive2."; # added 2022-06-01 334 + pyjet = throw "pyjet is deprecated, use fastjet instead"; # added 2023-05-10 334 335 pygame_sdl2 = pygame-sdl2; # added 2024-01-07 335 336 pygbm = throw "pygbm has been removed, since it is abandoned and broken"; # added 2023-06-20 336 337 PyGithub = pygithub; # added 2023-02-19
-2
pkgs/top-level/python-packages.nix
··· 11155 11155 11156 11156 pyisbn = callPackage ../development/python-modules/pyisbn { }; 11157 11157 11158 - pyjet = callPackage ../development/python-modules/pyjet { }; 11159 - 11160 11158 pyjks = callPackage ../development/python-modules/pyjks { }; 11161 11159 11162 11160 pyjnius = callPackage ../development/python-modules/pyjnius { };