mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
25 lines
571 B
Nix
25 lines
571 B
Nix
{ 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 ];
|
|
};
|
|
}
|
|
|