evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / au / audiness / package.nix
blobd7cff9d14e4bda1077d42969cd26301fc71ff79b
2   lib,
3   fetchFromGitHub,
4   python3,
5 }:
7 python3.pkgs.buildPythonApplication rec {
8   pname = "audiness";
9   version = "0.5.0";
10   pyproject = true;
12   src = fetchFromGitHub {
13     owner = "audiusGmbH";
14     repo = "audiness";
15     rev = "refs/tags/${version}";
16     hash = "sha256-+5NDea4p/JWEk305EhAtab3to36a74KR50eosw6c5qI=";
17   };
19   pythonRelaxDeps = [
20     "typer"
21     "validators"
22   ];
24   build-system = with python3.pkgs; [ poetry-core ];
27   dependencies =
28     with python3.pkgs;
29     [
30       pytenable
31       typer
32       validators
33     ];
35   pythonImportsCheck = [ "audiness" ];
37   meta = with lib; {
38     description = "CLI tool to interact with Nessus";
39     homepage = "https://github.com/audiusGmbH/audiness";
40     changelog = "https://github.com/audiusGmbH/audiness/releases/tag/${version}";
41     license = licenses.mit;
42     maintainers = with maintainers; [ fab ];
43     mainProgram = "audiness";
44   };