10 buildPythonPackage rec {
11 pname = "aiomusiccast";
15 disabled = pythonOlder "3.8";
17 src = fetchFromGitHub {
19 repo = "aiomusiccast";
20 rev = "refs/tags/${version}";
21 hash = "sha256-V4xl2QY+pPEnJtx7dxSNj/aXqHvV9Z6uuWgbVHNyLjA=";
25 substituteInPlace pyproject.toml \
26 --replace '"0.0.0"' '"${version}"'
33 propagatedBuildInputs = [
38 # upstream has no tests
41 pythonImportsCheck = [
46 description = "Companion library for musiccast devices intended for the Home Assistant integration";
47 homepage = "https://github.com/vigonotion/aiomusiccast";
48 changelog = "https://github.com/vigonotion/aiomusiccast/releases/tag/${version}";
49 license = licenses.mit;
50 maintainers = with maintainers; [ dotlambda ];