Merge pull request #303546 from fabaff/audiness-bump

audiness: 0.3.1 -> 0.3.2
This commit is contained in:
Fabian Affolter 2024-04-12 12:20:35 +02:00 committed by GitHub
commit 5b6ed54207
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,33 +1,37 @@
{ lib {
, fetchFromGitHub lib,
, python3 fetchFromGitHub,
python3,
}: }:
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "audiness"; pname = "audiness";
version = "0.3.1"; version = "0.3.2";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "audiusGmbH"; owner = "audiusGmbH";
repo = "audiness"; repo = "audiness";
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-r+xWwXRKuTp5ifUUlF1K6BIVWh67hNLMBKBB7wnLLAM="; hash = "sha256-vc2k3oEMTgzm/C6z6BieRrT3cSP0IkY+D3RXkNGaZTE=";
}; };
nativeBuildInputs = with python3.pkgs; [ pythonRelaxDeps = [ "validators" ];
poetry-core
];
propagatedBuildInputs = with python3.pkgs; [ build-system = with python3.pkgs; [ poetry-core ];
pytenable
typer
validators
] ++ typer.optional-dependencies.all;
pythonImportsCheck = [ nativeBuildInputs = with python3.pkgs; [ pythonRelaxDepsHook ];
"audiness"
]; dependencies =
with python3.pkgs;
[
pytenable
typer
validators
]
++ typer.optional-dependencies.all;
pythonImportsCheck = [ "audiness" ];
meta = with lib; { meta = with lib; {
description = "CLI tool to interact with Nessus"; description = "CLI tool to interact with Nessus";