9405df4a82
GitOrigin-RevId: 8e4fe32876ca15e3d5eb3ecd3ca0b224417f5f17
25 lines
564 B
Nix
25 lines
564 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub
|
|
, cryptography
|
|
, ecdsa
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "3.3.1";
|
|
pname = "sshpubkeys";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ojarva";
|
|
repo = "python-${pname}";
|
|
rev = version;
|
|
sha256 = "1qsixmqg97kyvg1naw76blq4314vaw4hl5f9wi0v111mcmdia1r4";
|
|
};
|
|
|
|
propagatedBuildInputs = [ cryptography ecdsa ];
|
|
|
|
meta = with lib; {
|
|
description = "OpenSSH Public Key Parser for Python";
|
|
homepage = "https://github.com/ojarva/python-sshpubkeys";
|
|
license = licenses.bsd3;
|
|
maintainers = [ ];
|
|
};
|
|
}
|