Commit e46d4365 authored by Wim de With's avatar Wim de With
Browse files

python3Packages.ansible-pylibssh: migrate to finalAttrs

parent 4279efce
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -11,13 +11,13 @@
  wheel,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "ansible-pylibssh";
  version = "1.3.0";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    inherit (finalAttrs) pname version;
    hash = "sha256-JD6hsJYrC2secXrA5p2sljbmHsZbNyYMMXsjYMbjDKc=";
  };

@@ -37,8 +37,8 @@ buildPythonPackage rec {
  meta = {
    description = "Python bindings to client functionality of libssh specific to Ansible use case";
    homepage = "https://github.com/ansible/pylibssh";
    changelog = "https://github.com/ansible/pylibssh/releases/tag/v${version}";
    changelog = "https://github.com/ansible/pylibssh/releases/tag/v${finalAttrs.version}";
    license = lib.licenses.lgpl21Plus;
    maintainers = with lib.maintainers; [ wfdewith ];
  };
}
})