Merge pull request #179733 from prusnak/python-trezor

python3Packages.trezor: 0.13.0 -> 0.13.2

authored by Pavol Rusnak and committed by GitHub 245e681f 02666ed2

+29 -4
+23
pkgs/development/python-modules/simple-rlp/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + }: 5 + 6 + buildPythonPackage rec { 7 + pname = "simple-rlp"; 8 + version = "0.1.2"; 9 + 10 + src = fetchPypi { 11 + inherit pname version; 12 + sha256 = "5c4a9c58f1b742f7fa8af0fe4ea6ff9fb02294ae041912f771570dfaf339d2b9"; 13 + }; 14 + 15 + pythonImportsCheck = [ "rlp" ]; 16 + 17 + meta = with lib; { 18 + description = "Simple RLP (Recursive Length Prefix)"; 19 + homepage = "https://github.com/SamuelHaidu/simple-rlp"; 20 + license = licenses.mit; 21 + maintainers = with maintainers; [ prusnak ]; 22 + }; 23 + }
+4 -4
pkgs/development/python-modules/trezor/default.nix
··· 15 15 , protobuf 16 16 , pyblake2 17 17 , requests 18 - , rlp 19 18 , shamir-mnemonic 19 + , simple-rlp 20 20 , typing-extensions 21 21 , trezor-udev-rules 22 22 , pytestCheckHook ··· 24 24 25 25 buildPythonPackage rec { 26 26 pname = "trezor"; 27 - version = "0.13.0"; 27 + version = "0.13.2"; 28 28 29 29 disabled = !isPy3k; 30 30 31 31 src = fetchPypi { 32 32 inherit pname version; 33 - sha256 = "4571aa09dbfe88b31eb2f16c7c359b4809621b75a04b7b5bc9dbffe17046c99a"; 33 + sha256 = "cdb696fd01dad6a0cb23b61ea3a4867bb51cecda5cb2a77366fb6a53bff58ac4"; 34 34 }; 35 35 36 36 nativeBuildInputs = [ installShellFiles ]; ··· 47 47 protobuf 48 48 pyblake2 49 49 requests 50 - rlp 51 50 shamir-mnemonic 51 + simple-rlp 52 52 typing-extensions 53 53 ] ++ lib.optionals stdenv.isLinux [ 54 54 trezor-udev-rules
+2
pkgs/top-level/python-packages.nix
··· 9738 9738 9739 9739 simple-rest-client = callPackage ../development/python-modules/simple-rest-client { }; 9740 9740 9741 + simple-rlp = callPackage ../development/python-modules/simple-rlp { }; 9742 + 9741 9743 simple-salesforce = callPackage ../development/python-modules/simple-salesforce { }; 9742 9744 9743 9745 simple-websocket-server = callPackage ../development/python-modules/simple-websocket-server { };