1{ buildPythonPackage 2, fetchPypi 3, h2 4, lib 5, pyjwt 6, pyopenssl 7}: 8 9buildPythonPackage rec { 10 pname = "aioapns"; 11 version = "2.0.2"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "ea58ce685aa6d0ffbdc3be4a6999c7268b9c765f806d3e4da7677c098fb72cbc"; 16 }; 17 18 propagatedBuildInputs = [ 19 h2 20 pyopenssl 21 pyjwt 22 ]; 23 24 # Project has no tests 25 doCheck = false; 26 27 pythonImportsCheck = [ "aioapns" ]; 28 29 meta = with lib; { 30 description = "An efficient APNs Client Library for Python/asyncio"; 31 homepage = "https://github.com/Fatal1ty/aioapns"; 32 license = licenses.asl20; 33 maintainers = with maintainers; [ ]; 34 }; 35}