summary refs log tree commit diff
path: root/pkgs/development/python-modules/libagent
diff options
context:
space:
mode:
authorrnhmjoj <micheleguerinirocco@me.com>2017-05-31 22:42:35 +0200
committerrnhmjoj <micheleguerinirocco@me.com>2017-06-01 00:48:31 +0200
commit6217233531ef824f0fa34a55108a1e4dcc84741c (patch)
tree1d1e0636e9db2ea2304fc902aab988aa427f8f55 /pkgs/development/python-modules/libagent
parent93ff334d6d2f6d65b17dfd44f3eb9b66c2383abc (diff)
downloadnixpkgs-6217233531ef824f0fa34a55108a1e4dcc84741c.tar
nixpkgs-6217233531ef824f0fa34a55108a1e4dcc84741c.tar.gz
nixpkgs-6217233531ef824f0fa34a55108a1e4dcc84741c.tar.bz2
nixpkgs-6217233531ef824f0fa34a55108a1e4dcc84741c.tar.lz
nixpkgs-6217233531ef824f0fa34a55108a1e4dcc84741c.tar.xz
nixpkgs-6217233531ef824f0fa34a55108a1e4dcc84741c.tar.zst
nixpkgs-6217233531ef824f0fa34a55108a1e4dcc84741c.zip
pythonPackages.libagent: init at 0.9.1
Diffstat (limited to 'pkgs/development/python-modules/libagent')
-rw-r--r--pkgs/development/python-modules/libagent/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/libagent/default.nix b/pkgs/development/python-modules/libagent/default.nix
new file mode 100644
index 00000000000..5192abf8200
--- /dev/null
+++ b/pkgs/development/python-modules/libagent/default.nix
@@ -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 ];
+  };
+}