Unverified Commit b823bfb8 authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

Merge pull request #322094 from EricTheMagician/ryd-client

python3Packages.ryd-client: init at  0.0.6
parents fd4919bc a0eaad75
Loading
Loading
Loading
Loading
+32 −0
Original line number Diff line number Diff line
{
  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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -13682,6 +13682,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 { };