python310Packages.jaraco-email: init at 3.1.0

This commit is contained in:
Robert Schütz
2023-02-01 20:25:56 -08:00
parent b84ba7b1ab
commit aa2112a7f1
2 changed files with 57 additions and 0 deletions
@@ -0,0 +1,55 @@
{ lib
, stdenv
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, setuptools
, setuptools-scm
, jaraco_text
, jaraco_collections
, keyring
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "jaraco-email";
version = "3.1.0";
disabled = pythonOlder "3.7";
format = "pyproject";
src = fetchFromGitHub {
owner = "jaraco";
repo = "jaraco.email";
rev = "refs/tags/v${version}";
hash = "sha256-MR/SX5jmZvEMULgvQbh0JBZjIosNCPWl1wvEoJbdw4Y=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
];
SETUPTOOLS_SCM_PRETEND_VERSION = version;
propagatedBuildInputs = [
jaraco_text
jaraco_collections
keyring
];
pythonImportsCheck = [ "jaraco.email" ];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
changelog = "https://github.com/jaraco/jaraco.email/blob/${src.rev}/CHANGES.rst";
description = "E-mail facilities by jaraco";
homepage = "https://github.com/jaraco/jaraco.email";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
+2
View File
@@ -4792,6 +4792,8 @@ self: super: with self; {
jaraco_collections = callPackage ../development/python-modules/jaraco_collections { };
jaraco-email = callPackage ../development/python-modules/jaraco-email { };
jaraco-context = callPackage ../development/python-modules/jaraco-context { };
jaraco_functools = callPackage ../development/python-modules/jaraco_functools { };