python312Packages.hkdf: drop (#330769)

authored by Emily and committed by GitHub 3ab03139 08c122ae

+7 -85
+6 -43
pkgs/development/python-modules/autobahn/default.nix
··· 4 fetchFromGitHub, 5 attrs, 6 argon2-cffi, 7 - base58, 8 cbor2, 9 cffi, 10 - click, 11 cryptography, 12 - ecdsa, 13 - eth-abi, 14 - eth-account, 15 flatbuffers, 16 - jinja2, 17 - hkdf, 18 hyperlink, 19 - mnemonic, 20 mock, 21 msgpack, 22 passlib, 23 - py-ecc, 24 - # , py-eth-sig-utils 25 - py-multihash, 26 py-ubjson, 27 pynacl, 28 pygobject3, ··· 32 python-snappy, 33 pytestCheckHook, 34 pythonOlder, 35 - # , pytrie 36 - rlp, 37 service-identity, 38 setuptools, 39 - spake2, 40 twisted, 41 txaio, 42 ujson, 43 - # , web3 44 - # , wsaccel 45 - # , xbr 46 - yapf, 47 - # , zlmdb 48 zope-interface, 49 }@args: 50 ··· 71 txaio 72 ]; 73 74 - nativeCheckInputs = 75 - [ 76 - mock 77 - pytest-asyncio 78 - pytestCheckHook 79 - ] 80 - ++ optional-dependencies.scram ++ optional-dependencies.serialization ++ optional-dependencies.xbr; 81 82 preCheck = '' 83 # Run asyncio tests (requires twisted) ··· 92 pythonImportsCheck = [ "autobahn" ]; 93 94 optional-dependencies = rec { 95 - all = accelerate ++ compress ++ encryption ++ nvx ++ serialization ++ scram ++ twisted ++ ui ++ xbr; 96 accelerate = [ 97 # wsaccel 98 ]; ··· 122 zope-interface 123 ]; 124 ui = [ pygobject3 ]; 125 - xbr = [ 126 - base58 127 - cbor2 128 - click 129 - ecdsa 130 - eth-abi 131 - jinja2 132 - hkdf 133 - mnemonic 134 - py-ecc # py-eth-sig-utils 135 - py-multihash 136 - rlp 137 - spake2 138 - twisted # web3 xbr 139 - yapf # zlmdb 140 - ]; 141 }; 142 143 meta = with lib; {
··· 4 fetchFromGitHub, 5 attrs, 6 argon2-cffi, 7 cbor2, 8 cffi, 9 cryptography, 10 flatbuffers, 11 hyperlink, 12 mock, 13 msgpack, 14 passlib, 15 py-ubjson, 16 pynacl, 17 pygobject3, ··· 21 python-snappy, 22 pytestCheckHook, 23 pythonOlder, 24 service-identity, 25 setuptools, 26 twisted, 27 txaio, 28 ujson, 29 zope-interface, 30 }@args: 31 ··· 52 txaio 53 ]; 54 55 + nativeCheckInputs = [ 56 + mock 57 + pytest-asyncio 58 + pytestCheckHook 59 + ] ++ optional-dependencies.scram ++ optional-dependencies.serialization; 60 61 preCheck = '' 62 # Run asyncio tests (requires twisted) ··· 71 pythonImportsCheck = [ "autobahn" ]; 72 73 optional-dependencies = rec { 74 + all = accelerate ++ compress ++ encryption ++ nvx ++ serialization ++ scram ++ twisted ++ ui; 75 accelerate = [ 76 # wsaccel 77 ]; ··· 101 zope-interface 102 ]; 103 ui = [ pygobject3 ]; 104 }; 105 106 meta = with lib; {
-40
pkgs/development/python-modules/hkdf/default.nix
··· 1 - { 2 - lib, 3 - buildPythonPackage, 4 - fetchFromGitHub, 5 - nose, 6 - setuptools, 7 - }: 8 - 9 - buildPythonPackage { 10 - pname = "hkdf"; 11 - version = "0.0.3"; 12 - pyproject = true; 13 - 14 - src = fetchFromGitHub { 15 - owner = "casebeer"; 16 - repo = "python-hkdf"; 17 - rev = "cc3c9dbf0a271b27a7ac5cd04cc1485bbc3b4307"; 18 - hash = "sha256-i3vJzUI7dpZbgZkz7Agd5RAeWisNWftdk/mkJBZkkLg="; 19 - }; 20 - 21 - build-system = [ setuptools ]; 22 - 23 - pythonImportsCheck = [ "hkdf" ]; 24 - 25 - nativeCheckInputs = [ nose ]; 26 - 27 - checkPhase = '' 28 - runHook preCheck 29 - 30 - nosetests 31 - 32 - runHook postCheck 33 - ''; 34 - 35 - meta = with lib; { 36 - description = "HMAC-based Extract-and-Expand Key Derivation Function (HKDF)"; 37 - homepage = "https://github.com/casebeer/python-hkdf"; 38 - license = licenses.bsd2; 39 - }; 40 - }
···
+1
pkgs/top-level/python-aliases.nix
··· 258 hcs_utils = hcs-utils; # added 2024-01-06 259 hdlparse = throw "hdlparse has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18 260 hglib = python-hglib; # added 2023-10-13 261 homeassistant-bring-api = bring-api; # added 2024-04-11 262 homeassistant-pyozw = throw "homeassistant-pyozw has been removed, as it was packaged for home-assistant which has removed it as a dependency."; # added 2024-01-05 263 htmllaundry = throw "htmllaundry has been removed because it is abandoned"; # added 2024-06-04
··· 258 hcs_utils = hcs-utils; # added 2024-01-06 259 hdlparse = throw "hdlparse has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18 260 hglib = python-hglib; # added 2023-10-13 261 + hkdf = throw "hkdf has been removed, as it is no longer maintained upstream."; # added 2024-10-04 262 homeassistant-bring-api = bring-api; # added 2024-04-11 263 homeassistant-pyozw = throw "homeassistant-pyozw has been removed, as it was packaged for home-assistant which has removed it as a dependency."; # added 2024-01-05 264 htmllaundry = throw "htmllaundry has been removed because it is abandoned"; # added 2024-06-04
-2
pkgs/top-level/python-packages.nix
··· 5714 5715 hkavr = callPackage ../development/python-modules/hkavr { }; 5716 5717 - hkdf = callPackage ../development/python-modules/hkdf { }; 5718 - 5719 hledger-utils = callPackage ../development/python-modules/hledger-utils { }; 5720 5721 hlk-sw16 = callPackage ../development/python-modules/hlk-sw16 { };
··· 5714 5715 hkavr = callPackage ../development/python-modules/hkavr { }; 5716 5717 hledger-utils = callPackage ../development/python-modules/hledger-utils { }; 5718 5719 hlk-sw16 = callPackage ../development/python-modules/hlk-sw16 { };