nixpkgs/pkgs/development/python-modules/aioapns/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
643 B
Nix
Raw Normal View History

2021-09-24 01:34:43 +00:00
{ buildPythonPackage
, fetchPypi
, h2
, lib
, pyjwt
, pyopenssl
}:
buildPythonPackage rec {
pname = "aioapns";
version = "2.1";
2021-09-24 01:34:43 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "2ce526910bc2514a84b8105abe80508526ceafc0097c89f86bbbc501f8666c99";
2021-09-24 01:34:43 +00:00
};
propagatedBuildInputs = [
h2
pyopenssl
pyjwt
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "aioapns" ];
meta = with lib; {
description = "An efficient APNs Client Library for Python/asyncio";
homepage = "https://github.com/Fatal1ty/aioapns";
license = licenses.asl20;
2021-11-03 00:38:27 +00:00
maintainers = with maintainers; [ ];
2021-09-24 01:34:43 +00:00
};
}