python3Packages.ryd-client: init at 0.0.6

This commit is contained in:
Eric Yen 2024-06-23 20:48:23 -07:00
parent b69514a24e
commit a0eaad7531
No known key found for this signature in database
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
requests,
}:
buildPythonPackage rec {
pname = "ryd-client";
version = "0.0.6";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-PxrVdVw+dAkF8WWzYyg2/B5CFurNPA5XRNtH9uu/SiY=";
};
build-system = [ setuptools ];
dependencies = [ requests ];
# no tests
doCheck = false;
pythonImportsCheck = [ "ryd_client" ];
meta = {
description = "Python client library for the Return YouTube Dislike API";
homepage = "https://github.com/bbilly1/ryd-client";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.ericthemagician ];
};
}

View File

@ -13666,6 +13666,8 @@ self: super: with self; {
rxv = callPackage ../development/python-modules/rxv { };
ryd-client = callPackage ../development/python-modules/ryd-client { };
rzpipe = callPackage ../development/python-modules/rzpipe { };
s2clientprotocol = callPackage ../development/python-modules/s2clientprotocol { };