3
0
Fork 0
forked from mirrors/nixpkgs

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

Add meta.changelog to various packages
This commit is contained in:
Anderson Torres 2022-11-24 20:09:46 -03:00 committed by GitHub
commit 4e0d26c442
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 18 additions and 8 deletions

View file

@ -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;
};
}

View file

@ -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 ];
};

View file

@ -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";
};
}

View file

@ -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 ];
};

View file

@ -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 ];
};

View file

@ -21,8 +21,9 @@ buildPythonPackage rec {
pythonImportsCheck = [ "tap" ];
meta = with lib; {
homepage = "https://github.com/python-tap/tappy";
description = "A set of tools for working with the Test Anything Protocol (TAP) in Python";
homepage = "https://github.com/python-tap/tappy";
changelog = "https://tappy.readthedocs.io/en/latest/releases.html";
license = licenses.bsd2;
maintainers = with maintainers; [ sfrijters ];
};

View file

@ -19,8 +19,9 @@ buildPythonPackage rec {
pythonImportsCheck = [ "wrapio" ];
meta = with lib; {
homepage = "https://github.com/Exahilosys/wrapio";
description = "Handling event-based streams";
homepage = "https://github.com/Exahilosys/wrapio";
changelog = "https://github.com/Exahilosys/wrapio/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ sfrijters ];
};

View file

@ -21,8 +21,9 @@ buildPythonPackage rec {
checkInputs = [ pytestCheckHook ];
meta = with lib; {
homepage = "https://github.com/Shoobx/xmldiff";
description = "Creates diffs of XML files";
homepage = "https://github.com/Shoobx/xmldiff";
changelog = "https://github.com/Shoobx/xmldiff/blob/master/CHANGES.rst";
license = licenses.mit;
maintainers = with maintainers; [ sfrijters ];
};

View file

@ -44,6 +44,7 @@ stdenv.mkDerivation rec {
meta = {
description = "GUI configuration tool for openbox";
homepage = "http://openbox.org/wiki/ObConf";
changelog = "http://openbox.org/wiki/ObConf:Changelog";
license = lib.licenses.gpl2Plus;
maintainers = [ lib.maintainers.sfrijters ];
platforms = lib.platforms.linux;

View file

@ -31,6 +31,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "A set of utilities for visualization and conversion of scientific data in the free, portable HDF5 format";
homepage = "https://github.com/stevengj/h5utils";
changelog = "https://github.com/NanoComp/h5utils/releases/tag/${version}";
license = with licenses; [ mit gpl2 ];
maintainers = with maintainers; [ sfrijters ];
};