Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, fetchPypi, buildPythonPackage, ed25519, ecdsa 2, semver, keepkey, trezor, mnemonic, ledgerblue 3}: 4 5buildPythonPackage rec { 6 name = "${pname}-${version}"; 7 pname = "libagent"; 8 version = "0.9.2"; 9 10 src = fetchPypi{ 11 inherit pname version; 12 sha256 = "d6c6dccc0a7693fc966f5962604a69a800e044ac5add3dd030c34cfd4d64311f"; 13 }; 14 15 buildInputs = [ 16 ed25519 ecdsa semver keepkey 17 trezor mnemonic ledgerblue 18 ]; 19 20 meta = with stdenv.lib; { 21 description = "Using hardware wallets as SSH/GPG agent"; 22 homepage = https://github.com/romanz/trezor-agent; 23 license = licenses.gpl3; 24 maintainers = with maintainers; [ np ]; 25 }; 26}