Commit 391ba7ed authored by Doron Behar's avatar Doron Behar
Browse files

python31{3,4}.pkgs.guidata: fix changelog URL

parent 2d142832
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -113,7 +113,12 @@ buildPythonPackage rec {
  meta = {
    description = "Python library generating graphical user interfaces for easy dataset editing and display";
    homepage = "https://github.com/PlotPyStack/guidata";
    changelog = "https://github.com/PlotPyStack/guidata/blob/${src.tag}/CHANGELOG.md";
    changelog = "https://github.com/PlotPyStack/guidata/blob/master/doc/release_notes/release_${lib.versions.major version}.${
      lib.pipe version [
        lib.versions.minor
        (lib.fixedWidthString 2 "0")
      ]
    }.md";
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [ doronbehar ];
  };