python312Packages.jaraco-envs: init at 2.6.0

This commit is contained in:
Robert Schütz 2024-07-19 03:58:29 -07:00
parent 6cc4349330
commit eb90c22c8c
2 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,48 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools-scm,
path,
tox,
virtualenv,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "jaraco-envs";
version = "2.6.0";
pyproject = true;
src = fetchFromGitHub {
owner = "jaraco";
repo = "jaraco.envs";
rev = "refs/tags/v${version}";
hash = "sha256-yRMX0H6yWN8TiO/LGAr4HyrVS8ZhBjuR885/+UQscP0=";
};
build-system = [ setuptools-scm ];
dependencies = [
path
tox
virtualenv
];
pythonImportsCheck = [ "jaraco.envs" ];
nativeCheckInputs = [ pytestCheckHook ];
disabledTestPaths = [
# requires networking
"jaraco/envs.py"
];
meta = {
changelog = "https://github.com/jaraco/jaraco.envs/blob/${src.rev}/NEWS.rst";
description = "Classes for orchestrating Python (virtual) environments";
homepage = "https://github.com/jaraco/jaraco.envs";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}

View File

@ -6132,6 +6132,8 @@ self: super: with self; {
jaraco-email = callPackage ../development/python-modules/jaraco-email { };
jaraco-envs = callPackage ../development/python-modules/jaraco-envs { };
jaraco-context = callPackage ../development/python-modules/jaraco-context { };
jaraco-functools = callPackage ../development/python-modules/jaraco-functools { };