Unverified Commit 5944f9ad authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

pypresence: 4.3.0 -> 4.3.0-unstable-2025-03-27 (#405117)

parents 48c0c97b 193079be
Loading
Loading
Loading
Loading
+14 −9
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  fetchFromGitHub,
  setuptools,
}:

buildPythonPackage rec {
buildPythonPackage {
  pname = "pypresence";
  version = "4.3.0";
  format = "setuptools";
  version = "4.3.0-unstable-2025-03-27";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-phkaOvM6lmfypO8BhVd8hrli7nCqgmQ8Rydopv7R+/M=";
  src = fetchFromGitHub {
    owner = "qwertyquerty";
    repo = "pypresence";
    rev = "4e882c36d0f800c016c15977243ac9a49177095a";
    hash = "sha256-DjwDmQMbI9tV40TTe1CthhphoysKSFICrRhqijJjIAE=";
  };

  build-system = [ setuptools ];

  doCheck = false; # tests require internet connection
  pythonImportsCheck = [ "pypresence" ];

  meta = with lib; {
  meta = {
    homepage = "https://qwertyquerty.github.io/pypresence/html/index.html";
    description = "Discord RPC client written in Python";
    license = licenses.mit;
    license = lib.licenses.mit;
    maintainers = [ ];
  };
}