depot/third_party/nixpkgs/pkgs/development/python-modules/aioapns/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

44 lines
817 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
h2,
pyjwt,
pyopenssl,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "aioapns";
version = "3.3.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-bfQpcp/oEBpFu9ywog8CFGGHR8Z5kL6l2O2nzZXaN90=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
h2
pyopenssl
pyjwt
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "aioapns" ];
meta = with lib; {
description = "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; [ ];
};
}