python310Packages.awacs: add changelog to meta

This commit is contained in:
Fabian Affolter 2022-12-18 10:25:52 +01:00 committed by GitHub
parent 1c872e198a
commit f81e05bfe2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 ];
};
}