mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
pythonPackages.shamir-mnemonic: init at 0.1.0
This commit is contained in:
parent
7a7cf6faf0
commit
68b647a3b6
22
pkgs/development/python-modules/shamir-mnemonic/default.nix
Normal file
22
pkgs/development/python-modules/shamir-mnemonic/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ lib, fetchPypi, buildPythonPackage, isPy3k, click, colorama }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "shamir-mnemonic";
|
||||
version = "0.1.0";
|
||||
|
||||
disabled = !isPy3k;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1cc08d276e05b13cd32bd3b0c5d1cb6c30254e0086e0f6857ec106d4cceff121";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ click colorama ];
|
||||
|
||||
meta = {
|
||||
description = "Reference implementation of SLIP-0039";
|
||||
homepage = "https://github.com/trezor/python-shamir-mnemonic";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ "1000101" ];
|
||||
};
|
||||
}
|
@ -4716,6 +4716,8 @@ in {
|
||||
|
||||
simplegeneric = callPackage ../development/python-modules/simplegeneric { };
|
||||
|
||||
shamir-mnemonic = callPackage ../development/python-modules/shamir-mnemonic { };
|
||||
|
||||
shodan = callPackage ../development/python-modules/shodan { };
|
||||
|
||||
should-dsl = callPackage ../development/python-modules/should-dsl { };
|
||||
|
Loading…
Reference in New Issue
Block a user