mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
3b941360f2
solo-python since version 0.0.28 supports fido2 >= v0.9 therefore no longer broken
65 lines
1.2 KiB
Nix
65 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
, click
|
|
, cryptography
|
|
, ecdsa
|
|
, fido2
|
|
, intelhex
|
|
, pyserial
|
|
, pyusb
|
|
, requests
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "solo-python";
|
|
version = "0.0.30";
|
|
format = "flit";
|
|
disabled = pythonOlder "3.6"; # only python>=3.6 is supported
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "solokeys";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1i9kybp08qfcdx6m4wl7ij40y1v17mvvhcdg7zglwfakblf69w41";
|
|
};
|
|
|
|
# replaced pinned fido, with unrestricted fido version
|
|
patchPhase = ''
|
|
sed -i '/fido2/c\"fido2",' pyproject.toml
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
click
|
|
cryptography
|
|
ecdsa
|
|
fido2
|
|
intelhex
|
|
pyserial
|
|
pyusb
|
|
requests
|
|
];
|
|
|
|
# allow for writable directory for darwin
|
|
preBuild = ''
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
# repo doesn't contain tests, ensure imports aren't broken
|
|
pythonImportsCheck = [
|
|
"solo"
|
|
"solo.cli"
|
|
"solo.commands"
|
|
"solo.fido2"
|
|
"solo.operations"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python tool and library for SoloKeys";
|
|
homepage = "https://github.com/solokeys/solo-python";
|
|
maintainers = with maintainers; [ wucke13 ];
|
|
license = with licenses; [ asl20 mit ];
|
|
};
|
|
}
|