mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
35 lines
788 B
Nix
35 lines
788 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "music-assistant-frontend";
|
|
version = "2.8.12";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-QqjryLHEpsdcZkIu/QmrQ0t9u4PysnE7FTXsIWBz7tk=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace-fail "~=" ">="
|
|
'';
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "music_assistant_frontend" ];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/music-assistant/frontend/releases/tag/${version}";
|
|
description = "The Music Assistant frontend";
|
|
homepage = "https://github.com/music-assistant/frontend";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|