python.pkgs.pybrowserid: move expression and 0.9.2 -> 0.14.0 (#42814)

This commit is contained in:
worldofpeace
2018-06-30 13:01:07 +00:00
committed by xeji
parent c9f9ec6f18
commit bae87d5042
2 changed files with 25 additions and 22 deletions

View File

@@ -0,0 +1,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 ];
};
}