Merge pull request #303412 from r-ryantm/auto-update/gallia

gallia: 1.6.0 -> 1.7.0
This commit is contained in:
Fabian Affolter 2024-04-12 11:00:47 +02:00 committed by GitHub
commit fce85f5e7c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,31 +1,29 @@
{ lib {
, fetchFromGitHub lib,
, python3 fetchFromGitHub,
, cacert python3,
cacert,
}: }:
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "gallia"; pname = "gallia";
version = "1.6.0"; version = "1.7.0";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Fraunhofer-AISEC"; owner = "Fraunhofer-AISEC";
repo = "gallia"; repo = "gallia";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-LvzEyBkhji7ruVVO2EpqM8pKOcTX8Dnkqu/GtWOfMZs="; hash = "sha256-hLGaImYkv6/1Wv1a+0tKmW4qmV4akNoyd0RXopJjetI=";
}; };
nativeBuildInputs = with python3.pkgs; [ pythonRelaxDeps = [ "httpx" ];
poetry-core
pythonRelaxDepsHook
];
pythonRelaxDeps = [ build-system = with python3.pkgs; [ poetry-core ];
"httpx"
];
propagatedBuildInputs = with python3.pkgs; [ nativeBuildInputs = with python3.pkgs; [ pythonRelaxDepsHook ];
dependencies = with python3.pkgs; [
aiofiles aiofiles
aiohttp aiohttp
aiosqlite aiosqlite
@ -51,9 +49,7 @@ python3.pkgs.buildPythonApplication rec {
pytest-asyncio pytest-asyncio
]; ];
pythonImportsCheck = [ pythonImportsCheck = [ "gallia" ];
"gallia"
];
preCheck = '' preCheck = ''
export PATH=$out/bin:$PATH export PATH=$out/bin:$PATH
@ -64,7 +60,10 @@ python3.pkgs.buildPythonApplication rec {
homepage = "https://github.com/Fraunhofer-AISEC/gallia"; homepage = "https://github.com/Fraunhofer-AISEC/gallia";
changelog = "https://github.com/Fraunhofer-AISEC/gallia/releases/tag/v${version}"; changelog = "https://github.com/Fraunhofer-AISEC/gallia/releases/tag/v${version}";
license = with licenses; [ asl20 ]; license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab rumpelsepp ]; maintainers = with maintainers; [
fab
rumpelsepp
];
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }