Unverified Commit f81e05bf authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python310Packages.awacs: add changelog to meta

parent 1c872e19
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -3,8 +3,6 @@
, fetchPypi
, pythonOlder
, python

  # python dependencies
, typing-extensions
}:

@@ -27,12 +25,15 @@ buildPythonPackage rec {
    ${python.interpreter} -m unittest discover
  '';

  pythonImportsCheck = [ "awacs" ];
  pythonImportsCheck = [
    "awacs"
  ];

  meta = with lib; {
    description = "AWS Access Policy Language creation library";
    maintainers = with maintainers; [ jlesquembre ];
    license = licenses.bsd2;
    homepage = "https://github.com/cloudtools/awacs";
    changelog = "https://github.com/cloudtools/awacs/blob/${version}/CHANGELOG.md";
    license = licenses.bsd2;
    maintainers = with maintainers; [ jlesquembre ];
  };
}