Unverified Commit 1c8c37ec authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

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

parents 703675fc 81690432
Loading
Loading
Loading
Loading
+11 −7
Original line number Diff line number Diff line
@@ -3,8 +3,9 @@
  buildPythonPackage,
  fetchFromGitHub,
  pyramid,
  unittestCheckHook,
  pytestCheckHook,
  setuptools,
  setuptools-scm,
}:

buildPythonPackage rec {
@@ -19,17 +20,20 @@ buildPythonPackage rec {
    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}";
    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;
    maintainers = [ ];
    license = lib.licenses.mpl20;
    maintainers = with lib.maintainers; [ bot-wxt1221 ];
  };
}