python.pkgs.pybrowserid: move expression and 0.9.2 -> 0.14.0 (#42814)
This commit is contained in:
24
pkgs/development/python-modules/pybrowserid/default.nix
Normal file
24
pkgs/development/python-modules/pybrowserid/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user