Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / httpauth / default.nix
bloba7d4240db1439a14f66cf38abc140431fee4a8b7
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   version = "0.3";
8   pname = "httpauth";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "0qas7876igyz978pgldp5r7n7pis8n4vf0v87gxr9l7p7if5lr3l";
13   };
15   doCheck = false;
17   meta = with lib; {
18     description = "WSGI HTTP Digest Authentication middleware";
19     homepage = "https://github.com/jonashaag/httpauth";
20     license = licenses.bsd2;
21     maintainers = with maintainers; [ ];
22   };