Merge pull request #260567 from natsukium/bip-utils

This commit is contained in:
Pavol Rusnak 2023-10-12 09:05:27 +02:00 committed by GitHub
commit 5cdcee42d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 3 deletions

View file

@ -10,11 +10,12 @@
, py-sr25519-bindings
, cbor2
, pycryptodome
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "bip-utils";
version = "2.7.0";
version = "2.7.1";
format = "setuptools";
disabled = pythonOlder "3.6";
@ -23,7 +24,7 @@ buildPythonPackage rec {
owner = "ebellocchia";
repo = "bip_utils";
rev = "refs/tags/v${version}";
hash = "sha256-m7/CC5/T6qR2Ot4y5WQlzOAR0czz6XHCjJskES+2nns=";
hash = "sha256-QrCkLiGBdZTQCnbWSTN0PeoAsQfg2CoSGdZcbhqTvOk=";
};
postPatch = ''
@ -42,6 +43,10 @@ buildPythonPackage rec {
pycryptodome
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"bip_utils"
];

View file

@ -59,6 +59,7 @@ mapAliases ({
backports_weakref = throw "backports_weakref has been removed, since we no longer need to backport to python3.3"; # added 2023-07-28
beancount_docverif = beancount-docverif; # added 2023-10-08
bedup = throw "bedup was removed because it was broken and abandoned upstream"; # added 2023-02-04
bip_utils = bip-utils; # 2023-10-08
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
BlinkStick = blinkstick; # added 2023-02-19
blockdiagcontrib-cisco = throw "blockdiagcontrib-cisco is not compatible with blockdiag 2.0.0 and has been removed."; # added 2020-11-29

View file

@ -1438,7 +1438,7 @@ self: super: with self; {
biplist = callPackage ../development/python-modules/biplist { };
bip_utils = callPackage ../development/python-modules/bip_utils { };
bip-utils = callPackage ../development/python-modules/bip-utils { };
bitarray = callPackage ../development/python-modules/bitarray { };