1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-01 01:51:24 +00:00
nixpkgs/pkgs/development/python-modules/pywebpush/default.nix

29 lines
659 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage
, coverage, flake8, mock, nose
, http-ece, py-vapid, requests }:
buildPythonPackage rec {
pname = "pywebpush";
2019-10-24 07:47:46 +01:00
version = "1.10.0";
src = fetchPypi {
inherit pname version;
2019-10-24 07:47:46 +01:00
sha256 = "de8b7e638c6b595c6405f16fd5356e92d2feb8237ab4e50a89770e4ed93aebd6";
};
propagatedBuildInputs = [
http-ece py-vapid requests
];
checkInputs = [
coverage flake8 mock nose
];
meta = with lib; {
description = "Webpush Data encryption library for Python";
homepage = https://github.com/web-push-libs/pywebpush;
license = licenses.mpl20;
maintainers = with maintainers; [ peterhoeg ];
};
}