summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyramid_multiauth/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pyramid_multiauth/default.nix')
-rw-r--r--pkgs/development/python-modules/pyramid_multiauth/default.nix24
1 files changed, 0 insertions, 24 deletions
diff --git a/pkgs/development/python-modules/pyramid_multiauth/default.nix b/pkgs/development/python-modules/pyramid_multiauth/default.nix
deleted file mode 100644
index 22e32aa4d1e..00000000000
--- a/pkgs/development/python-modules/pyramid_multiauth/default.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, pyramid
-}:
-
-buildPythonPackage rec {
-  pname = "pyramid_multiauth";
-  version = "1.0.1";
-
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "6d8785558e1d0bbe0d0da43e296efc0fbe0de5071d1f9b1091e891f0e4ec9682";
-  };
-
-  propagatedBuildInputs = [ pyramid ];
-
-  meta = with lib; {
-    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 = with maintainers; [];
-  };
-}