Commit eb90c22c authored by Robert Schütz's avatar Robert Schütz
Browse files

python312Packages.jaraco-envs: init at 2.6.0

parent 6cc43493
Loading
Loading
Loading
Loading
+48 −0
Original line number Diff line number Diff line
{
  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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };