python310Packages.pyro4: add changelog to meta

This commit is contained in:
Fabian Affolter
2023-01-24 14:46:29 +01:00
parent 5e46415165
commit 0606291973
@@ -37,7 +37,9 @@ buildPythonPackage rec {
];
# add testsupport.py to PATH
preCheck = "PYTHONPATH=tests/PyroTests:$PYTHONPATH";
preCheck = ''
PYTHONPATH=tests/PyroTests:$PYTHONPATH
'';
pytestFlagsArray = [
@@ -61,6 +63,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Distributed object middleware for Python (RPC)";
homepage = "https://github.com/irmen/Pyro4";
changelog = "https://github.com/irmen/Pyro4/releases/tag/{version}";
license = licenses.mit;
maintainers = with maintainers; [ prusnak ];
};