linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / python3-openid / default.nix
blob769067f53fb0d1c3d3762f9bf14e73f380c94d00
1 { lib, isPy3k, buildPythonPackage, fetchPypi, defusedxml }:
3 buildPythonPackage rec {
4   pname = "python3-openid";
5   version = "3.2.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "1bxf9a3ny1js422j962zfzl4a9dhj192pvai05whn7j0iy9gdyrk";
10   };
12   propagatedBuildInputs = [ defusedxml ];
14   doCheck = false;
16   disabled = !isPy3k;
18   meta = with lib; {
19     description = "OpenID support for modern servers and consumers";
20     homepage = "https://github.com/necaris/python3-openid";
21     license = licenses.asl20;
22   };