Unverified Commit 80f2dc3b authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

music-assistant: 2.7.3 -> 2.7.5, python3Packages.aiosendspin: 1.2.0 -> 2.1.0,...

music-assistant: 2.7.3 -> 2.7.5, python3Packages.aiosendspin: 1.2.0 -> 2.1.0, python3Packages.py-opensonic: 7.0.4 -> 8.1.1 (#480857)
parents ce6cc10a 62249532
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -47,14 +47,14 @@ assert

python.pkgs.buildPythonApplication rec {
  pname = "music-assistant";
  version = "2.7.3";
  version = "2.7.5";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "music-assistant";
    repo = "server";
    tag = version;
    hash = "sha256-6D3B88wjfVHvNhNrTDOu77eAkherOqdBVafUhht7okA=";
    hash = "sha256-iWdOGdmPJO7Pjdn8UjuSOhWnRGBFjmARFsuHmP6IP58=";
  };

  patches = [
+2 −1
Original line number Diff line number Diff line
# Do not edit manually, run ./update-providers.py

{
  version = "2.7.3";
  version = "2.7.5";
  providers = {
    airplay = ps: [
    ];
@@ -134,6 +134,7 @@
    sendspin =
      ps: with ps; [
        aiosendspin
        av
      ];
    siriusxm = ps: [
    ]; # missing sxm
+8 −2
Original line number Diff line number Diff line
@@ -20,16 +20,22 @@

buildPythonPackage rec {
  pname = "aiosendspin";
  version = "1.2.0";
  version = "2.1.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "Sendspin";
    repo = "aiosendspin";
    tag = version;
    hash = "sha256-3vTEfXeFqouPswRKST/9U7yg9ah7J9m2KAMoxaBZNR0=";
    hash = "sha256-9VhNtfXH2r/cGkscz51PIK2/66pPOGv0S0IpO0wFvO4=";
  };

  # https://github.com/Sendspin/aiosendspin/blob/1.2.0/pyproject.toml#L7
  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace-fail 'version = "0.0.0"' 'version = "${version}"'
  '';

  build-system = [
    setuptools
  ];
+4 −2
Original line number Diff line number Diff line
@@ -3,25 +3,27 @@
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
  aiohttp,
  mashumaro,
  requests,
}:

buildPythonPackage rec {
  pname = "py-opensonic";
  version = "7.0.4";
  version = "8.1.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "khers";
    repo = "py-opensonic";
    tag = "v${version}";
    hash = "sha256-5wsisIfYW+0uh0khUzt9wKFxBf/ZXVsKpNF/Dcrj2wI=";
    hash = "sha256-/P/7ytA0YHuJZEq7KQosPBQM2vo6VAss1G8pTIEswJA=";
  };

  build-system = [ setuptools ];

  dependencies = [
    aiohttp
    mashumaro
    requests
  ];