1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-26 19:16:47 +03:00

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