summary refs log blame commit diff
path: root/pkgs/development/python-modules/sshpubkeys/default.nix
blob: 955eb905ac29fcd80e0800c9db9de50b9e6c27a6 (plain) (tree)
1
2
3
4
5
6
7





                                          
                    




                             

                                                                    





                                                         
                                                             



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