python310Packages.rope: add changelog to meta

This commit is contained in:
Fabian Affolter
2023-01-09 11:21:58 +01:00
parent 2f846f4332
commit 91bdfd4592
@@ -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 ];
};
}