Unverified Commit 37d6e426 authored by Austin Horstman's avatar Austin Horstman Committed by GitHub
Browse files

python3Packages.ansible-pylibssh: 1.3.0 -> 1.4.0 (#503368)

parents 33348ba8 295f40bb
Loading
Loading
Loading
Loading
+7 −6
Original line number Diff line number Diff line
@@ -11,14 +11,15 @@
  wheel,
}:

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

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

  build-system = [
@@ -37,8 +38,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 ];
  };
}
})