aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/science/math/sage/python-openid.nix
blob: 4c7fdadadaf04bc3015b0d56e18494bc58e6bf8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, django
, nose
, twill
, pycrypto
}:

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

  disabled = isPy3k;

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

  propagatedBuildInputs = [
    pycrypto
  ];

  # Cannot access the djopenid example module.
  # I don't know how to fix that (adding the examples dir to PYTHONPATH doesn't work)
  doCheck = false;
  checkInputs = [ nose django twill ];
  checkPhase = ''
    nosetests
  '';

  meta = with stdenv.lib; {
    description = "OpenID library for Python";
    license = licenses.asl20;
    maintainers = with maintainers; [ timokau ];
    homepage = "https://github.com/openid/python-openid/";
  };
}