python311Packages.pyramid-multiauth: fix build, enable tests
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user