python3Packages.pyramid-multiauth: fix build (#355630)

This commit is contained in:
Aleksana 2024-11-14 15:49:35 +08:00 committed by GitHub
commit 1c8c37ecd6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,8 +3,9 @@
buildPythonPackage, buildPythonPackage,
fetchFromGitHub, fetchFromGitHub,
pyramid, pyramid,
unittestCheckHook, pytestCheckHook,
setuptools, setuptools,
setuptools-scm,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -19,17 +20,20 @@ buildPythonPackage rec {
hash = "sha256-Bz53iCGsl6WZASIvBQ1pFfcGLra82vA2OLWjhLVdkrw="; hash = "sha256-Bz53iCGsl6WZASIvBQ1pFfcGLra82vA2OLWjhLVdkrw=";
}; };
nativeBuildInputs = [ setuptools ]; build-system = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [ pyramid ]; dependencies = [ pyramid ];
nativeCheckInputs = [ unittestCheckHook ]; nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; { meta = {
changelog = "https://github.com/mozilla-services/pyramid_multiauth/releases/tag/${version}"; changelog = "https://github.com/mozilla-services/pyramid_multiauth/releases/tag/${version}";
description = "Authentication policy for Pyramid that proxies to a stack of other authentication policies"; description = "Authentication policy for Pyramid that proxies to a stack of other authentication policies";
homepage = "https://github.com/mozilla-services/pyramid_multiauth"; homepage = "https://github.com/mozilla-services/pyramid_multiauth";
license = licenses.mpl20; license = lib.licenses.mpl20;
maintainers = [ ]; maintainers = with lib.maintainers; [ bot-wxt1221 ];
}; };
} }