Unverified Commit 508a626b authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python3Packages.ytmusicapi: 1.11.0 -> 1.11.1 (#439282)

parents 3a2b2350 576cd99d
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -52,7 +52,10 @@ python3Packages.buildPythonApplication rec {
    gstreamer
  ]);

  pythonRelaxDeps = [ "mpris_server" ];
  pythonRelaxDeps = [
    "mpris_server"
    "ytmusicapi"
  ];

  postInstall = ''
    make install prefix=$out
+2 −5
Original line number Diff line number Diff line
@@ -2,23 +2,20 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pythonOlder,
  requests,
  setuptools-scm,
}:

buildPythonPackage rec {
  pname = "ytmusicapi";
  version = "1.11.0";
  version = "1.11.1";
  pyproject = true;

  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "sigma67";
    repo = "ytmusicapi";
    tag = version;
    hash = "sha256-7GaxWLGmyxy5RlLoqXXmTM67eoIDf9IB3qjohZcNupU=";
    hash = "sha256-ZgzrXVBvITAW01hgFfFw13BcEVLxxhOzgrJSs+Bn3wg=";
  };

  build-system = [ setuptools-scm ];