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

python312Packages.jaraco-path: init at 3.7.0

parent eb90c22c
Loading
Loading
Loading
Loading
+34 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools-scm,
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "jaraco-path";
  version = "3.7.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "jaraco";
    repo = "jaraco.path";
    rev = "refs/tags/v${version}";
    hash = "sha256-P22sA138guKTlOxSxUJ0mU41W16984yYlkZea06juOM=";
  };

  build-system = [ setuptools-scm ];

  pythonImportsCheck = [ "jaraco.path" ];

  nativeCheckInputs = [ pytestCheckHook ];

  meta = {
    changelog = "https://github.com/jaraco/jaraco.path/blob/${src.rev}/NEWS.rst";
    description = "Miscellaneous path functions";
    homepage = "https://github.com/jaraco/jaraco.path";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ dotlambda ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -6144,6 +6144,8 @@ self: super: with self; {
  jaraco-net = callPackage ../development/python-modules/jaraco-net { };
  jaraco-path = callPackage ../development/python-modules/jaraco-path { };
  jaraco-stream = callPackage ../development/python-modules/jaraco-stream { };
  jaraco-test = callPackage ../development/python-modules/jaraco-test { };