9f054b5e1a
(It was requested by them.) I left one case due to fetching from their personal repo: pkgs/desktops/pantheon/desktop/extra-elementary-contracts/default.nix
25 lines
548 B
Nix
25 lines
548 B
Nix
{ lib, 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 lib; {
|
|
description = "Python library for the BrowserID Protocol";
|
|
homepage = "https://github.com/mozilla/PyBrowserID";
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|
|
|