python3Packages.pypresence: init at 4.2.0

This commit is contained in:
Konrad Borowski 2021-05-30 21:59:42 +02:00
parent 7747a60811
commit f6122ba3dd
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "pypresence";
version = "4.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "1c8r7yxih5zp46qb9anq5s91pw2wr7d9d0nzcfh4l42x10c8lqal";
};
doCheck = false; # tests require internet connection
pythonImportsCheck = [ "pypresence" ];
meta = with lib; {
homepage = "https://qwertyquerty.github.io/pypresence/html/index.html";
description = "Discord RPC client written in Python";
license = licenses.mit;
maintainers = with maintainers; [ xfix ];
};
}

View file

@ -6102,6 +6102,8 @@ in {
pyppeteer = callPackage ../development/python-modules/pyppeteer { };
pypresence = callPackage ../development/python-modules/pypresence { };
pyprind = callPackage ../development/python-modules/pyprind { };
pyprof2calltree = callPackage ../development/python-modules/pyprof2calltree { };