Merge pull request #307656 from fabaff/audiness-bump

audiness: 0.3.2 -> 0.4.0
This commit is contained in:
Nick Cao 2024-04-29 11:01:26 -04:00 committed by GitHub
commit d47e295ccf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,17 +6,20 @@
python3.pkgs.buildPythonApplication rec {
pname = "audiness";
version = "0.3.2";
version = "0.4.0";
pyproject = true;
src = fetchFromGitHub {
owner = "audiusGmbH";
repo = "audiness";
rev = "refs/tags/${version}";
hash = "sha256-vc2k3oEMTgzm/C6z6BieRrT3cSP0IkY+D3RXkNGaZTE=";
hash = "sha256-UJe4ZawjAuUoSKEdIgjh8zZu/amYLZ8rpUDahSHokKA=";
};
pythonRelaxDeps = [ "validators" ];
pythonRelaxDeps = [
"typer"
"validators"
];
build-system = with python3.pkgs; [ poetry-core ];