mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
pythonPackages.libagent: init at 0.9.1
This commit is contained in:
parent
93ff334d6d
commit
6217233531
26
pkgs/development/python-modules/libagent/default.nix
Normal file
26
pkgs/development/python-modules/libagent/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ stdenv, fetchPypi, buildPythonPackage, ed25519, ecdsa
|
||||
, semver, keepkey, trezor, mnemonic, ledgerblue
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "libagent";
|
||||
version = "0.9.1";
|
||||
|
||||
src = fetchPypi{
|
||||
inherit pname version;
|
||||
sha256 = "1g19lsid7lqw567w31fif89w088lzbgh27xpb1pshjk1gvags3bc";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
ed25519 ecdsa semver keepkey
|
||||
trezor mnemonic ledgerblue
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Using hardware wallets as SSH/GPG agent";
|
||||
homepage = "https://github.com/romanz/trezor-agent";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ np ];
|
||||
};
|
||||
}
|
|
@ -29634,6 +29634,8 @@ EOF
|
|||
|
||||
keepkey = callPackage ../development/python-modules/keepkey { };
|
||||
|
||||
libagent = callPackage ../development/python-modules/libagent { };
|
||||
|
||||
ledgerblue = callPackage ../development/python-modules/ledgerblue { };
|
||||
|
||||
ecpy = callPackage ../development/python-modules/ecpy { };
|
||||
|
|
Loading…
Reference in a new issue