mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
Merge pull request #262932 from fabaff/aioapns-bump
python311Packages.aioapns: 3.0 -> 3.1
This commit is contained in:
commit
1b7890ce69
@ -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; [ ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user