python3Packages.bip_utils: init at 1.0.5
This commit is contained in:
parent
e6d81a9b89
commit
bcdb9a427d
2 changed files with 34 additions and 0 deletions
32
pkgs/development/python-modules/bip_utils/default.nix
Normal file
32
pkgs/development/python-modules/bip_utils/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, ecdsa
|
||||||
|
, pysha3
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "bip_utils";
|
||||||
|
version = "1.0.5";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "e8397a315c2f656ccf37ff1c43f5e0d496a10ea692c614fdf9bae1a3d5de3558";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ ecdsa pysha3 ];
|
||||||
|
|
||||||
|
# tests are not packaged in the released tarball
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"bip_utils"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Implementation of BIP39, BIP32, BIP44, BIP49 and BIP84 for wallet seeds, keys and addresses generation";
|
||||||
|
homepage = "https://github.com/ebellocchia/bip_utils";
|
||||||
|
license = with lib.licenses; [ mit ];
|
||||||
|
maintainers = with lib.maintainers; [ prusnak ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -523,6 +523,8 @@ in {
|
||||||
|
|
||||||
biplist = callPackage ../development/python-modules/biplist { };
|
biplist = callPackage ../development/python-modules/biplist { };
|
||||||
|
|
||||||
|
bip_utils = callPackage ../development/python-modules/bip_utils { };
|
||||||
|
|
||||||
bitarray = callPackage ../development/python-modules/bitarray { };
|
bitarray = callPackage ../development/python-modules/bitarray { };
|
||||||
|
|
||||||
bitcoinlib = callPackage ../development/python-modules/bitcoinlib { };
|
bitcoinlib = callPackage ../development/python-modules/bitcoinlib { };
|
||||||
|
|
Loading…
Reference in a new issue