chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / mu / music-assistant / frontend.nix
blobf01e7f4bba41ba75371207de779c684c8756688a
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools
5 }:
7 buildPythonPackage rec {
8   pname = "music-assistant-frontend";
9   version = "2.8.13";
10   pyproject = true;
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-bbNIYVFASAdeF1c+Nrcb92wMEBhrCMI8NdQvYhGvbLI=";
15   };
17   postPatch = ''
18     substituteInPlace pyproject.toml \
19       --replace-fail "~=" ">="
20   '';
22   build-system = [ setuptools ];
24   doCheck = false;
26   pythonImportsCheck = [ "music_assistant_frontend" ];
28   meta = with lib; {
29     changelog = "https://github.com/music-assistant/frontend/releases/tag/${version}";
30     description = "The Music Assistant frontend";
31     homepage = "https://github.com/music-assistant/frontend";
32     license = licenses.asl20;
33     maintainers = with maintainers; [ hexa ];
34   };