Skip to content

Commit

Permalink
python311Packages.gentools: add changelog to meta
Browse files Browse the repository at this point in the history
(cherry picked from commit 2a5388a)
  • Loading branch information
fabaff authored and github-actions[bot] committed Nov 28, 2023
1 parent 190bba9 commit f244839
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/development/python-modules/gentools/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,11 @@ buildPythonPackage rec {
version = "1.2.1";
pyproject = true;

# Pypi doesn't ship the tests, so we fetch directly from GitHub
src = fetchFromGitHub {
owner = "ariebovenberg";
repo = pname;
repo = "gentools";
rev = "refs/tags/v${version}";
sha256 = "sha256-RBUIji3FOIRjfp4t7zBAVSeiWaYufz4ID8nTWmhDkf8=";
hash = "sha256-RBUIji3FOIRjfp4t7zBAVSeiWaYufz4ID8nTWmhDkf8=";
};

nativeBuildInputs = [ poetry-core ];
Expand All @@ -33,8 +32,9 @@ buildPythonPackage rec {

meta = with lib; {
description = "Tools for generators, generator functions, and generator-based coroutines";
license = licenses.mit;
homepage = "https://gentools.readthedocs.io/";
changelog = "https://github.com/ariebovenberg/gentools/blob/v${version}/CHANGELOG.rst";
license = licenses.mit;
maintainers = with maintainers; [ mredaelli ];
};
}

0 comments on commit f244839

Please sign in to comment.