biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pymailgunner / default.nix
blob7e5a5bd5d8c47258dff8df938f0e9c379b3e5580
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   requests,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "pymailgunner";
11   version = "1.5";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "pschmitt";
18     repo = pname;
19     rev = version;
20     hash = "sha256-QKwpW1aeN6OI76Kocow1Zhghq4/fl/cMPexny0MTwQs=";
21   };
23   propagatedBuildInputs = [ requests ];
25   # Module has no tests
26   doCheck = false;
28   pythonImportsCheck = [ "pymailgunner" ];
30   meta = with lib; {
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 ];
35   };