Unverified Commit 4e0d26c4 authored by Anderson Torres's avatar Anderson Torres Committed by GitHub
Browse files

Merge pull request #202744 from SFrijters/sfrijters-meta-changelog

Add meta.changelog to various packages
parents 87ed2b76 abe1c9ee
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -35,10 +35,11 @@ buildPythonPackage rec {
  '';

  meta = with lib; {
    broken = stdenv.isDarwin;
    homepage = "https://github.com/altdesktop/python-dbus-next";
    description = "A zero-dependency DBus library for Python with asyncio support";
    homepage = "https://github.com/altdesktop/python-dbus-next";
    changelog = "https://github.com/altdesktop/python-dbus-next/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ sfrijters ];
    broken = stdenv.isDarwin;
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -77,6 +77,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python library for Dropbox's HTTP-based Core and Datastore APIs";
    homepage = "https://github.com/dropbox/dropbox-sdk-python";
    changelog = "https://github.com/dropbox/dropbox-sdk-python/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ sfrijters ];
  };
+2 −1
Original line number Diff line number Diff line
@@ -91,9 +91,10 @@ buildPythonPackage rec {

  meta = with lib; {
    description = "Open-source Dropbox client for macOS and Linux";
    homepage = "https://maestral.app";
    changelog = "https://github.com/samschott/maestral/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ peterhoeg sfrijters ];
    platforms = platforms.unix;
    homepage = "https://maestral.app";
  };
}
+2 −1
Original line number Diff line number Diff line
@@ -15,7 +15,8 @@ buildPythonPackage rec {

  meta = with lib; {
    description = "Help visualize profiling data from cProfile with kcachegrind and qcachegrind";
    homepage = "https://pypi.python.org/pypi/pyprof2calltree/";
    homepage = "https://github.com/pwaller/pyprof2calltree";
    changelog = "https://github.com/pwaller/pyprof2calltree/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ sfrijters ];
  };
+2 −1
Original line number Diff line number Diff line
@@ -24,8 +24,9 @@ buildPythonPackage rec {
  pythonImportsCheck = [ "survey" ];

  meta = with lib; {
    homepage = "https://github.com/Exahilosys/survey";
    description = "A simple library for creating beautiful interactive prompts";
    homepage = "https://github.com/Exahilosys/survey";
    changelog = "https://github.com/Exahilosys/survey/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ sfrijters ];
  };
Loading