python311Packages.pyramid-multiauth: fix build, enable tests

This commit is contained in:
Martin Weinelt
2023-10-20 14:58:11 +02:00
parent 15197bc0f0
commit fa04a5a742
@@ -1,22 +1,37 @@
{ lib
, buildPythonPackage
, fetchPypi
, fetchFromGitHub
, pyramid
, unittestCheckHook
, setuptools
}:
buildPythonPackage rec {
pname = "pyramid-multiauth";
version = "1.0.1";
pyproject = true;
src = fetchPypi {
pname = "pyramid-multiauth";
inherit version;
sha256 = "6d8785558e1d0bbe0d0da43e296efc0fbe0de5071d1f9b1091e891f0e4ec9682";
src = fetchFromGitHub {
owner = "mozilla-services";
repo = "pyramid_multiauth";
rev = "refs/tags/${version}";
hash = "sha256-+Aa+Vc4qCqDe/W5m/RBpYAyOMJkBv+ZGSqElJlkHqs4=";
};
propagatedBuildInputs = [ pyramid ];
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
pyramid
];
nativeCheckInputs = [
unittestCheckHook
];
meta = with lib; {
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";
homepage = "https://github.com/mozilla-services/pyramid_multiauth";
license = licenses.mpl20;