summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-openid/default.nix
blob: f25a89c65d4448d618e7dd54c08b761b23144d2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "python-openid";
  name = "${pname}-${version}";
  version = "2.2.5";

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

  doCheck = false;

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