Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

pythonPackages.{awkward0,uproot3}: remove

+3 -120
-37
pkgs/development/python-modules/awkward0/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , numpy 5 - , pytest-runner 6 - , pytestCheckHook 7 - }: 8 - 9 - buildPythonPackage rec { 10 - pname = "awkward0"; 11 - version = "0.15.5"; 12 - 13 - src = fetchFromGitHub { 14 - owner = "scikit-hep"; 15 - repo = "awkward-0.x"; 16 - rev = version; 17 - sha256 = "039pxzgll2yz8xpr6bw788ymvgvqgna5kgl9m6d9mzi4yhbjsjpx"; 18 - }; 19 - 20 - nativeBuildInputs = [ pytest-runner ]; 21 - 22 - propagatedBuildInputs = [ numpy ]; 23 - 24 - checkInputs = [ pytestCheckHook ]; 25 - 26 - # Can't find a fixture 27 - disabledTests = [ "test_import_pandas" ]; 28 - 29 - pythonImportsCheck = [ "awkward0" ]; 30 - 31 - meta = with lib; { 32 - description = "Manipulate jagged, chunky, and/or bitmasked arrays as easily as Numpy"; 33 - homepage = "https://github.com/scikit-hep/awkward-array"; 34 - license = licenses.bsd3; 35 - maintainers = with maintainers; [ costrouc SuperSandro2000 ]; 36 - }; 37 - }
-31
pkgs/development/python-modules/uproot3-methods/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , numpy 5 - , awkward0 6 - }: 7 - 8 - buildPythonPackage rec { 9 - version = "0.10.1"; 10 - pname = "uproot3-methods"; 11 - 12 - src = fetchPypi { 13 - inherit pname version; 14 - sha256 = "dd68f90be1ea276360b96369836849df29045f7fe4e534f9ac21ea00798ee358"; 15 - }; 16 - 17 - nativeBuildInputs = [ awkward0 ]; 18 - 19 - propagatedBuildInputs = [ numpy awkward0 ]; 20 - 21 - # No tests on PyPi 22 - doCheck = false; 23 - pythonImportsCheck = [ "uproot3_methods" ]; 24 - 25 - meta = with lib; { 26 - homepage = "https://github.com/scikit-hep/uproot3-methods"; 27 - description = "Pythonic mix-ins for ROOT classes"; 28 - license = licenses.bsd3; 29 - maintainers = with maintainers; [ costrouc SuperSandro2000 ]; 30 - }; 31 - }
-47
pkgs/development/python-modules/uproot3/default.nix
··· 1 - { lib, fetchFromGitHub, buildPythonPackage, isPy27 2 - , awkward0, backports_lzma ? null, cachetools, lz4, pandas 3 - , pytestCheckHook, pkgconfig, mock 4 - , numpy, requests, uproot3-methods, xxhash, zstandard 5 - }: 6 - 7 - buildPythonPackage rec { 8 - pname = "uproot3"; 9 - version = "3.14.4"; 10 - 11 - src = fetchFromGitHub { 12 - owner = "scikit-hep"; 13 - repo = "uproot3"; 14 - rev = version; 15 - sha256 = "sha256-hVJpKdYvyoCPyqgZzKYp30SvkYm+HWSNBdd9bYCYACE="; 16 - }; 17 - 18 - postPatch = '' 19 - substituteInPlace setup.py \ 20 - --replace '"pytest-runner"' "" 21 - ''; 22 - 23 - propagatedBuildInputs = [ 24 - awkward0 25 - cachetools 26 - lz4 27 - numpy 28 - uproot3-methods 29 - xxhash 30 - zstandard 31 - ] ++ lib.optional isPy27 backports_lzma; 32 - 33 - checkInputs = [ 34 - mock 35 - pandas 36 - pkgconfig 37 - pytestCheckHook 38 - requests 39 - ] ++ lib.optional isPy27 backports_lzma; 40 - 41 - meta = with lib; { 42 - homepage = "https://github.com/scikit-hep/uproot3"; 43 - description = "ROOT I/O in pure Python and Numpy"; 44 - license = licenses.bsd3; 45 - maintainers = with maintainers; [ ktf SuperSandro2000 ]; 46 - }; 47 - }
+3
pkgs/top-level/python-aliases.nix
··· 38 38 anyjson = throw "anyjson has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18 39 39 argon2_cffi = argon2-cffi; # added 2022-05-09 40 40 asyncio-nats-client = nats-py; # added 2022-02-08 41 + awkward0 = throw "awkward0 has been removed, use awkward instead"; # added 2022-12-13 41 42 Babel = babel; # added 2022-05-06 42 43 bitcoin-price-api = throw "bitcoin-price-api has been removed, it was using setuptools 2to3 translation feautre, which has been removed in setuptools 58"; # added 2022-02-15 43 44 blockdiagcontrib-cisco = throw "blockdiagcontrib-cisco is not compatible with blockdiag 2.0.0 and has been removed."; # added 2020-11-29 ··· 217 218 tvnamer = throw "tvnamer was moved to pkgs.tvnamer"; # added 2021-07-05 218 219 types-cryptography = throw "types-cryptography has been removed because it is obsolete since cryptography version 3.4.4."; # added 2022-05-30 219 220 types-paramiko = throw "types-paramiko has been removed because it was unused."; # added 2022-05-30 221 + uproot3 = throw "uproot3 has been removed, use uproot instead"; # added 2022-12-13 222 + uproot3-methods = throw "uproot3-methods has been removed"; # added 2022-12-13 220 223 Wand = wand; # added 2022-11-13 221 224 WazeRouteCalculator = wazeroutecalculator; # added 2021-09-29 222 225 weakrefmethod = throw "weakrefmethod was removed since it's not needed in Python >= 3.4"; # added 2022-12-01
-5
pkgs/top-level/python-packages.nix
··· 815 815 816 816 awesomeversion = callPackage ../development/python-modules/awesomeversion { }; 817 817 818 - awkward0 = callPackage ../development/python-modules/awkward0 { }; 819 818 awkward = callPackage ../development/python-modules/awkward { }; 820 819 821 820 awkward-cpp = callPackage ../development/python-modules/awkward-cpp { }; ··· 11674 11673 upnpy = callPackage ../development/python-modules/upnpy { }; 11675 11674 11676 11675 uproot = callPackage ../development/python-modules/uproot { }; 11677 - 11678 - uproot3 = callPackage ../development/python-modules/uproot3 { }; 11679 - 11680 - uproot3-methods = callPackage ../development/python-modules/uproot3-methods { }; 11681 11676 11682 11677 uptime = callPackage ../development/python-modules/uptime { }; 11683 11678