nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 21.05 24 lines 575 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pyramid 5}: 6 7buildPythonPackage rec { 8 pname = "pyramid_multiauth"; 9 version = "0.9.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "0lprqjyg3zcji6033p1l3s4nigjigc5423wgivkfhz46vq0jmniy"; 14 }; 15 16 propagatedBuildInputs = [ pyramid ]; 17 18 meta = with lib; { 19 description = "Authentication policy for Pyramid that proxies to a stack of other authentication policies"; 20 homepage = "https://github.com/mozilla-services/pyramid_multiauth"; 21 license = licenses.mpl20; 22 maintainers = with maintainers; []; 23 }; 24}