aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/hwi/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/hwi/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/hwi/default.nix51
1 files changed, 51 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/hwi/default.nix b/nixpkgs/pkgs/development/python-modules/hwi/default.nix
new file mode 100644
index 00000000000..de9c7995bde
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/hwi/default.nix
@@ -0,0 +1,51 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, mnemonic
+, ecdsa
+, typing-extensions
+, hidapi
+, libusb1
+, pyaes
+, trezor
+, btchip
+, ckcc-protocol
+}:
+
+buildPythonPackage rec {
+ pname = "hwi";
+ version = "1.1.2";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "eec460a51eb556500c1eca92015be246d5714cd53171407a76da71e4346048ae";
+ };
+
+ propagatedBuildInputs = [
+ mnemonic
+ ecdsa
+ typing-extensions
+ hidapi
+ libusb1
+ pyaes
+ trezor
+ btchip
+ ckcc-protocol
+ ];
+
+ patches = [ ./relax-deps.patch ];
+
+ # tests are not packaged in the released tarball
+ doCheck = false;
+
+ pythonImportsCheck = [
+ "hwilib"
+ ];
+
+ meta = {
+ description = "Bitcoin Hardware Wallet Interface";
+ homepage = "https://github.com/bitcoin-core/hwi";
+ license = with lib.licenses; [ mit ];
+ maintainers = with lib.maintainers; [ prusnak ];
+ };
+}