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

buildPythonPackage rec {
  pname = "PyBrowserID";
  version = "0.14.0";

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

  propagatedBuildInputs = [ requests ];

  checkInputs = [ mock ];

  meta = with stdenv.lib; {
    description = "Python library for the BrowserID Protocol";
    homepage    = "https://github.com/mozilla/PyBrowserID";
    license     = licenses.mpl20;
    maintainers = with maintainers; [ worldofpeace ];
  };
}