Commit da764037 authored by Robert Schütz's avatar Robert Schütz
Browse files

python3Packages.sshpubkeys: modernize

parent b4587b01
Loading
Loading
Loading
Loading
+14 −9
Original line number Diff line number Diff line
@@ -2,31 +2,36 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
  cryptography,
  ecdsa,
}:

buildPythonPackage rec {
  version = "3.3.1";
  format = "setuptools";
  pname = "sshpubkeys";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "ojarva";
    repo = "python-${pname}";
    rev = version;
    sha256 = "1qsixmqg97kyvg1naw76blq4314vaw4hl5f9wi0v111mcmdia1r4";
    repo = "python-sshpubkeys";
    # https://github.com/ojarva/python-sshpubkeys/issues/94
    tag = "v3.2.0";
    hash = "sha256-2OJatnQuCt9XQ797F5nEmgEZl5/tu9lrAry5yBGW61g=";
  };

  propagatedBuildInputs = [
  build-system = [ setuptools ];

  dependencies = [
    cryptography
    ecdsa
  ];

  meta = with lib; {
  pythonImportsCheck = [ "sshpubkeys" ];

  meta = {
    changelog = "https://github.com/ojarva/python-sshpubkeys/releases/tag/${src.tag}";
    description = "OpenSSH Public Key Parser for Python";
    homepage = "https://github.com/ojarva/python-sshpubkeys";
    license = licenses.bsd3;
    license = lib.licenses.bsd3;
    maintainers = [ ];
  };
}