pythonPackages.trezor_agent: init at 0.6.1

This commit is contained in:
Nicolas Pouillard 2016-01-21 23:32:19 +01:00
parent 9a547777e9
commit c8cf9455b7
No known key found for this signature in database
GPG key ID: 10C40A56EADFABBA

View file

@ -25067,4 +25067,24 @@ in modules // {
maintainers = with maintainers; [ np ];
};
};
trezor_agent = buildPythonPackage rec{
version = "0.6.1";
name = "trezor_agent-${version}";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/t/trezor_agent/${name}.tar.gz";
sha256 = "0wpppxzld7kqqxdvy80qc8629n047vm3m3nk171i7hijfw285p0b";
};
propagatedBuildInputs = with self; [ trezor ecdsa ed25519 mnemonic keepkey semver ];
meta = {
description = "Using Trezor as hardware SSH agent";
homepage = https://github.com/romanz/trezor-agent;
license = licenses.gpl3;
maintainer = with maintainers; [ np ];
};
};
}