Merge pull request #262932 from fabaff/aioapns-bump

python311Packages.aioapns: 3.0 -> 3.1
This commit is contained in:
Nick Cao 2023-10-23 22:00:11 -04:00 committed by GitHub
commit 1b7890ce69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,23 +1,23 @@
{ buildPythonPackage
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, h2
, lib
, pyjwt
, pyopenssl
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "aioapns";
version = "3.0";
format = "pyproject";
version = "3.1";
pyproject = true;
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-MiFjd9HYaTugjP66O24Tgk92bC91GQHggvy1sdQIu+0=";
hash = "sha256-BUSRIDAxeVKlZteYgGZZkMcUn6hAo1fWCbuZcHZXUhU=";
};
nativeBuildInputs = [
@ -33,11 +33,14 @@ buildPythonPackage rec {
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "aioapns" ];
pythonImportsCheck = [
"aioapns"
];
meta = with lib; {
description = "An efficient APNs Client Library for Python/asyncio";
description = "An efficient APNs Client Library";
homepage = "https://github.com/Fatal1ty/aioapns";
changelog = "https://github.com/Fatal1ty/aioapns/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};