9 buildPythonPackage rec {
10 pname = "pymailgunner";
12 format = "setuptools";
14 disabled = pythonOlder "3.7";
16 src = fetchFromGitHub {
20 hash = "sha256-QKwpW1aeN6OI76Kocow1Zhghq4/fl/cMPexny0MTwQs=";
23 propagatedBuildInputs = [ requests ];
28 pythonImportsCheck = [ "pymailgunner" ];
31 description = "Library for interacting with Mailgun e-mail service";
32 homepage = "https://github.com/pschmitt/pymailgunner";
33 license = with licenses; [ asl20 ];
34 maintainers = with maintainers; [ fab ];