pretalx.plugins.pages: 1.6.0 -> 1.7.0

https://github.com/pretalx/pretalx-pages/compare/v1.6.0...v1.7.0
This commit is contained in:
Martin Weinelt 2025-05-28 17:50:05 +02:00
parent 88ccda128b
commit eecbe2995a
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -1,20 +1,20 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "pretalx-pages";
version = "1.6.0";
version = "1.7.0";
pyproject = true;
src = fetchFromGitHub {
owner = "pretalx";
repo = "pretalx-pages";
rev = "v${version}";
hash = "sha256-9ZJSW6kdxpwHd25CuGTE4MMXylXaZKL3eAEKKdYiuXs=";
# TODO: https://github.com/pretalx/pretalx-pages/issues/6
src = fetchPypi {
pname = "pretalx_pages";
inherit version;
hash = "sha256-XFZS0FUzouZzVh9AADK5dnezFZiAWoBihD4C184+690=";
};
build-system = [ setuptools ];