python3Packages.gitingest: 0.1.4 -> 0.1.5
Changelog: https://github.com/cyclotruc/gitingest/releases/tag/v0.1.5 Diff: https://github.com/cyclotruc/gitingest/compare/v0.1.4..v0.1.5
This commit is contained in:
parent
fcde5a91e4
commit
60235c936e
@ -7,6 +7,8 @@
|
|||||||
setuptools,
|
setuptools,
|
||||||
click,
|
click,
|
||||||
fastapi,
|
fastapi,
|
||||||
|
pathspec,
|
||||||
|
pydantic,
|
||||||
python-dotenv,
|
python-dotenv,
|
||||||
slowapi,
|
slowapi,
|
||||||
starlette,
|
starlette,
|
||||||
@ -17,33 +19,34 @@
|
|||||||
# Tests
|
# Tests
|
||||||
httpx,
|
httpx,
|
||||||
jinja2,
|
jinja2,
|
||||||
|
gitMinimal,
|
||||||
|
pytest-asyncio,
|
||||||
|
pytest-mock,
|
||||||
pytestCheckHook,
|
pytestCheckHook,
|
||||||
python-multipart,
|
python-multipart,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "gitingest";
|
pname = "gitingest";
|
||||||
version = "0.1.4";
|
version = "0.1.5";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "cyclotruc";
|
owner = "cyclotruc";
|
||||||
repo = "gitingest";
|
repo = "gitingest";
|
||||||
tag = "v${version}";
|
tag = "v${version}";
|
||||||
hash = "sha256-2zt4pYgj5fieYS74QCMA9Kw9FUNb13ZJB/tX7WkMQew=";
|
hash = "sha256-f/srwLhTXboSlW28qnShqTuc2yLMuHH3MyzfKpDIitQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
build-system = [
|
build-system = [
|
||||||
setuptools
|
setuptools
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonRelaxDeps = [
|
|
||||||
"fastapi"
|
|
||||||
];
|
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
click
|
click
|
||||||
fastapi
|
fastapi
|
||||||
|
pathspec
|
||||||
|
pydantic
|
||||||
python-dotenv
|
python-dotenv
|
||||||
slowapi
|
slowapi
|
||||||
starlette
|
starlette
|
||||||
@ -59,6 +62,9 @@ buildPythonPackage rec {
|
|||||||
nativeCheckInputs = [
|
nativeCheckInputs = [
|
||||||
httpx
|
httpx
|
||||||
jinja2
|
jinja2
|
||||||
|
gitMinimal
|
||||||
|
pytest-asyncio
|
||||||
|
pytest-mock
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
python-multipart
|
python-multipart
|
||||||
];
|
];
|
||||||
@ -67,6 +73,13 @@ buildPythonPackage rec {
|
|||||||
# Tests require network
|
# Tests require network
|
||||||
"test_cli_with_default_options"
|
"test_cli_with_default_options"
|
||||||
"test_cli_with_options"
|
"test_cli_with_options"
|
||||||
|
"test_cli_with_stdout_output"
|
||||||
|
"test_cli_writes_file"
|
||||||
|
"test_clone_specific_branch"
|
||||||
|
"test_include_ignore_patterns"
|
||||||
|
"test_ingest_with_gitignore"
|
||||||
|
"test_parse_query_with_branch"
|
||||||
|
"test_parse_query_without_host"
|
||||||
"test_run_ingest_query"
|
"test_run_ingest_query"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user