linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pywebpush / default.nix
blob5bb8989506f218a388038f10a8959a19025e4983
1 { lib, fetchPypi, buildPythonPackage
2 , coverage, flake8, mock, nose
3 , http-ece, py-vapid, requests }:
5 buildPythonPackage rec {
6   pname = "pywebpush";
7   version = "1.11.0";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "596c74020f9cbabc99f7964127ab0bb6cc045fcfe781b7c73cffb3ea45947820";
12   };
14   propagatedBuildInputs = [
15     http-ece py-vapid requests
16   ];
18   checkInputs = [
19     coverage flake8 mock nose
20   ];
22   meta = with lib; {
23     description = "Webpush Data encryption library for Python";
24     homepage = "https://github.com/web-push-libs/pywebpush";
25     license = licenses.mpl20;
26     maintainers = with maintainers; [ peterhoeg ];
27   };