3
0
Fork 0
forked from mirrors/nixpkgs

python310Packages.pymailgunner: init at 1.5

This commit is contained in:
Fabian Affolter 2022-06-04 11:12:25 +02:00
parent a9a1d1f82c
commit e5e3e74d14
2 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,39 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, requests
, pythonOlder
}:
buildPythonPackage rec {
pname = "pymailgunner";
version = "1.5";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "pschmitt";
repo = pname;
rev = version;
hash = "sha256-QKwpW1aeN6OI76Kocow1Zhghq4/fl/cMPexny0MTwQs=";
};
propagatedBuildInputs = [
requests
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"pymailgunner"
];
meta = with lib; {
description = "Library for interacting with Mailgun e-mail service";
homepage = "https://github.com/pschmitt/pymailgunner";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -7558,6 +7558,8 @@ in {
pymaging_png = callPackage ../development/python-modules/pymaging_png { };
pymailgunner = callPackage ../development/python-modules/pymailgunner { };
pymanopt = callPackage ../development/python-modules/pymanopt { };
pymarshal = callPackage ../development/python-modules/pymarshal { };