My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/sshpubkeys/default.nix

25 lines
564 B

{ 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 = [ ];
};
}