python312Packages.hkdf: drop (#330769)

This commit is contained in:
Emily 2024-10-11 20:02:36 +01:00 committed by GitHub
commit 3ab03139e0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 7 additions and 85 deletions

View File

@ -4,25 +4,14 @@
fetchFromGitHub,
attrs,
argon2-cffi,
base58,
cbor2,
cffi,
click,
cryptography,
ecdsa,
eth-abi,
eth-account,
flatbuffers,
jinja2,
hkdf,
hyperlink,
mnemonic,
mock,
msgpack,
passlib,
py-ecc,
# , py-eth-sig-utils
py-multihash,
py-ubjson,
pynacl,
pygobject3,
@ -32,19 +21,11 @@
python-snappy,
pytestCheckHook,
pythonOlder,
# , pytrie
rlp,
service-identity,
setuptools,
spake2,
twisted,
txaio,
ujson,
# , web3
# , wsaccel
# , xbr
yapf,
# , zlmdb
zope-interface,
}@args:
@ -71,13 +52,11 @@ buildPythonPackage rec {
txaio
];
nativeCheckInputs =
[
mock
pytest-asyncio
pytestCheckHook
]
++ optional-dependencies.scram ++ optional-dependencies.serialization ++ optional-dependencies.xbr;
nativeCheckInputs = [
mock
pytest-asyncio
pytestCheckHook
] ++ optional-dependencies.scram ++ optional-dependencies.serialization;
preCheck = ''
# Run asyncio tests (requires twisted)
@ -92,7 +71,7 @@ buildPythonPackage rec {
pythonImportsCheck = [ "autobahn" ];
optional-dependencies = rec {
all = accelerate ++ compress ++ encryption ++ nvx ++ serialization ++ scram ++ twisted ++ ui ++ xbr;
all = accelerate ++ compress ++ encryption ++ nvx ++ serialization ++ scram ++ twisted ++ ui;
accelerate = [
# wsaccel
];
@ -122,22 +101,6 @@ buildPythonPackage rec {
zope-interface
];
ui = [ pygobject3 ];
xbr = [
base58
cbor2
click
ecdsa
eth-abi
jinja2
hkdf
mnemonic
py-ecc # py-eth-sig-utils
py-multihash
rlp
spake2
twisted # web3 xbr
yapf # zlmdb
];
};
meta = with lib; {

View File

@ -1,40 +0,0 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
nose,
setuptools,
}:
buildPythonPackage {
pname = "hkdf";
version = "0.0.3";
pyproject = true;
src = fetchFromGitHub {
owner = "casebeer";
repo = "python-hkdf";
rev = "cc3c9dbf0a271b27a7ac5cd04cc1485bbc3b4307";
hash = "sha256-i3vJzUI7dpZbgZkz7Agd5RAeWisNWftdk/mkJBZkkLg=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "hkdf" ];
nativeCheckInputs = [ nose ];
checkPhase = ''
runHook preCheck
nosetests
runHook postCheck
'';
meta = with lib; {
description = "HMAC-based Extract-and-Expand Key Derivation Function (HKDF)";
homepage = "https://github.com/casebeer/python-hkdf";
license = licenses.bsd2;
};
}

View File

@ -258,6 +258,7 @@ mapAliases ({
hcs_utils = hcs-utils; # added 2024-01-06
hdlparse = throw "hdlparse has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18
hglib = python-hglib; # added 2023-10-13
hkdf = throw "hkdf has been removed, as it is no longer maintained upstream."; # added 2024-10-04
homeassistant-bring-api = bring-api; # added 2024-04-11
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
htmllaundry = throw "htmllaundry has been removed because it is abandoned"; # added 2024-06-04

View File

@ -5714,8 +5714,6 @@ self: super: with self; {
hkavr = callPackage ../development/python-modules/hkavr { };
hkdf = callPackage ../development/python-modules/hkdf { };
hledger-utils = callPackage ../development/python-modules/hledger-utils { };
hlk-sw16 = callPackage ../development/python-modules/hlk-sw16 { };