python310Packages.returns: add changelog to meta

This commit is contained in:
Fabian Affolter
2023-07-06 08:42:55 +02:00
committed by GitHub
parent bf9fcead6d
commit f9edead13e
@@ -56,12 +56,15 @@ buildPythonPackage rec {
trio
];
pytestFlagsArray = [ "--ignore=typesafety" ];
pytestFlagsArray = [
"--ignore=typesafety"
];
meta = with lib; {
description = "Make your functions return something meaningful, typed, and safe!";
homepage = "https://github.com/dry-python/returns";
changelog = "https://github.com/dry-python/returns/blob/${version}/CHANGELOG.md";
license = licenses.bsd2;
maintainers = [ maintainers.jessemoore ];
maintainers = with maintainers; [ jessemoore ];
};
}