python3Packages.toonapi: init at 0.2.0

This commit is contained in:
Fabian Affolter 2021-01-16 11:25:37 +01:00
parent bcdca92787
commit 1062246907
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ lib
, aiohttp
, backoff
, buildPythonPackage
, fetchFromGitHub
, yarl
}:
buildPythonPackage rec {
pname = "toonapi";
version = "0.2.0";
src = fetchFromGitHub {
owner = "frenck";
repo = "python-toonapi";
rev = "v${version}";
sha256 = "1d4n615vlcgkvmchrfjw4h3ndav3ljmcfydxr2b41zn83mzizqdf";
};
propagatedBuildInputs = [
aiohttp
backoff
yarl
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "toonapi" ];
meta = with lib; {
description = "Python client for the Quby ToonAPI";
homepage = "https://github.com/frenck/python-toonapi";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -7647,6 +7647,8 @@ in {
else
callPackage ../development/python-modules/toolz/2.nix { };
toonapi = callPackage ../development/python-modules/toonapi { };
toposort = callPackage ../development/python-modules/toposort { };
topydo = throw "python3Packages.topydo was moved to topydo"; # 2017-09-22