summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-11-27 08:57:50 +0100
committerBjørn Forsman <bjorn.forsman@gmail.com>2023-01-08 06:43:38 +0100
commitc1b8dd67d8eca631f5170484164f9ab99024727b (patch)
treeda510ab6eb00ede9b09814f1a28d464d426cc892
parent9f11a2df77cb945c115ae2a65f53f38121597d73 (diff)
python310Packages.sanic: add changelog to meta
(cherry picked from commit 11b455593fc974c78559c45f347773ec147a8f37)
-rw-r--r--pkgs/development/python-modules/sanic/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/sanic/default.nix b/pkgs/development/python-modules/sanic/default.nix
index e1559e1ec432..5c9e9fd86644 100644
--- a/pkgs/development/python-modules/sanic/default.nix
+++ b/pkgs/development/python-modules/sanic/default.nix
@@ -33,7 +33,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "sanic-org";
repo = pname;
- rev = "v${version}";
+ rev = "refs/tags/v${version}";
hash = "sha256-krEQd0ak9Uua+r+pYmLStlizgE4HmZBO8Q0I2/gWAwU=";
};
@@ -129,6 +129,7 @@ buildPythonPackage rec {
broken = stdenv.isDarwin;
description = "Web server and web framework";
homepage = "https://github.com/sanic-org/sanic/";
+ changelog = "https://github.com/sanic-org/sanic/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ costrouc AluisioASG ];
};