aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/python3-openid/default.nix
blob: 2a85482cbb68ce03db707c6548eb92ff09906f80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, isPy3k, buildPythonPackage, fetchPypi, defusedxml }:

buildPythonPackage rec {
  pname = "python3-openid";
  version = "3.2.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1bxf9a3ny1js422j962zfzl4a9dhj192pvai05whn7j0iy9gdyrk";
  };

  propagatedBuildInputs = [ defusedxml ];

  doCheck = false;

  disabled = !isPy3k;

  meta = with stdenv.lib; {
    description = "OpenID support for modern servers and consumers";
    homepage = "https://github.com/necaris/python3-openid";
    license = licenses.asl20;
  };
}