From 91bdfd4592afee9df43cb334c4e051c8a0c5d41a Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 9 Jan 2023 11:21:58 +0100 Subject: [PATCH] python310Packages.rope: add changelog to meta --- pkgs/development/python-modules/rope/default.nix | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/rope/default.nix b/pkgs/development/python-modules/rope/default.nix index 21d5886efe21..c90dd8568a87 100644 --- a/pkgs/development/python-modules/rope/default.nix +++ b/pkgs/development/python-modules/rope/default.nix @@ -1,4 +1,9 @@ -{ lib, buildPythonPackage, fetchPypi, fetchpatch, nose }: +{ lib +, buildPythonPackage +, fetchPypi +, fetchpatch +, nose +}: buildPythonPackage rec { pname = "rope"; @@ -18,7 +23,10 @@ buildPythonPackage rec { }) ]; - checkInputs = [ nose ]; + checkInputs = [ + nose + ]; + checkPhase = '' # tracked upstream here https://github.com/python-rope/rope/issues/247 NOSE_IGNORE_FILES=type_hinting_test.py nosetests ropetest @@ -27,7 +35,8 @@ buildPythonPackage rec { meta = with lib; { description = "Python refactoring library"; homepage = "https://github.com/python-rope/rope"; - maintainers = with maintainers; [ goibhniu ]; + changelog = "https://github.com/python-rope/rope/blob/${version}/CHANGELOG.md"; license = licenses.gpl3Plus; + maintainers = with maintainers; [ goibhniu ]; }; }