about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-08-03 08:07:22 -0500
committerGitHub <noreply@github.com>2023-08-03 08:07:22 -0500
commit962bc02f9aab02840f74b9b216ff2e6a9b323def (patch)
tree7582e11a22b18dc15343607ee5b44a1ff2929bd3 /pkgs/development
parent4b0ef51702e1512880179cd24e9e63b88f0a2121 (diff)
parent858d81c12c1cbb80a32ee56af2c8d47feb781bad (diff)
Merge pull request #246911 from marsam/update-rst2pdf
rst2pdf: 0.100 -> 0.101
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/rst2pdf/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/rst2pdf/default.nix b/pkgs/development/python-modules/rst2pdf/default.nix
index 7bb8ac8545a04..6d6a484255743 100644
--- a/pkgs/development/python-modules/rst2pdf/default.nix
+++ b/pkgs/development/python-modules/rst2pdf/default.nix
@@ -18,13 +18,13 @@
 
 buildPythonPackage rec {
   pname = "rst2pdf";
-  version = "0.100";
+  version = "0.101";
 
   format = "pyproject";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "sha256-Zkw8FubT3qJ06ECkNurE26bLUKtq8xYvydVxa+PLe0I=";
+    sha256 = "sha256-AF8FssEIFHmeY2oVrAPNe85pbmgKWO52yD6ycNNzTSg=";
   };
 
   outputs = [ "out" "man" ];
@@ -66,6 +66,7 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "Convert reStructured Text to PDF via ReportLab";
     homepage = "https://rst2pdf.org/";
+    changelog = "https://github.com/rst2pdf/rst2pdf/blob/${version}/CHANGES.rst";
     license = licenses.mit;
     maintainers = with maintainers; [ marsam ];
   };