summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-01-09 11:21:58 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2023-01-09 11:21:58 +0100
commit91bdfd4592afee9df43cb334c4e051c8a0c5d41a (patch)
treec8c50f7dc93488ed9e8321dc1ed5cc37366bd4b2 /pkgs/development/python-modules
parent2f846f433216234d4d46aff3cc7b34fd77e70b48 (diff)
python310Packages.rope: add changelog to meta
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/rope/default.nix15
1 files 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 ];
};
}