Merge pull request #322094 from EricTheMagician/ryd-client

python3Packages.ryd-client: init at  0.0.6
This commit is contained in:
OTABI Tomoya 2024-07-07 12:11:08 +09:00 committed by GitHub
commit b823bfb85f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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

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