My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/keepkey/default.nix

39 lines
809 B

{ lib
, fetchFromGitHub
, buildPythonPackage
, ecdsa
, hidapi
, libusb1
, mnemonic
, protobuf
, pytest
}:
buildPythonPackage rec {
pname = "keepkey";
version = "7.2.1";
src = fetchFromGitHub {
owner = "keepkey";
repo = "python-keepkey";
rev = "v${version}";
sha256 = "00hqppdj3s9y25x4ad59y8axq94dd4chhw9zixq32sdrd9v8z55a";
};
propagatedBuildInputs = [ ecdsa hidapi libusb1 mnemonic protobuf ];
checkInputs = [ pytest ];
# tests requires hardware
doCheck = false;
# Remove impossible dependency constraint
postPatch = "sed -i -e 's|hidapi==|hidapi>=|' setup.py";
meta = with lib; {
description = "KeepKey Python client";
homepage = "https://github.com/keepkey/python-keepkey";
license = licenses.gpl3;
maintainers = with maintainers; [ np ];
};
}