mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-09 05:33:25 +00:00
Merge pull request #322094 from EricTheMagician/ryd-client
python3Packages.ryd-client: init at 0.0.6
This commit is contained in:
commit
b823bfb85f
32
pkgs/development/python-modules/ryd-client/default.nix
Normal file
32
pkgs/development/python-modules/ryd-client/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user