python3Packages.pyramid-multiauth: fix build (#355630)
This commit is contained in:
commit
1c8c37ecd6
@ -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 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user