python3Packages.pypresence: init at 4.2.0
This commit is contained in:
parent
7747a60811
commit
f6122ba3dd
21
pkgs/development/python-modules/pypresence/default.nix
Normal file
21
pkgs/development/python-modules/pypresence/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user