python310Packages.pyarr: init at 4.1.0

This commit is contained in:
Jonas Heinrich 2022-08-04 09:10:51 +02:00
parent 0db8a06b90
commit 2e6e7db0d7
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ lib
, fetchPypi
, buildPythonPackage
, types-requests
, requests
}:
buildPythonPackage rec {
pname = "pyarr";
version = "4.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-3DX02V3Srpx6hqimWbesxfkDqslVH4+8uXY7XYDmjX0=";
};
propagatedBuildInputs = [
requests
types-requests
];
pythonImportsCheck = [ "pyarr" ];
meta = with lib; {
description = "Python client for Servarr API's (Sonarr, Radarr, Readarr, Lidarr)";
homepage = "https://github.com/totaldebug/pyarr";
license = licenses.mit;
maintainers = with maintainers; [ onny ];
};
}

View file

@ -7151,6 +7151,8 @@ in {
pyarlo = callPackage ../development/python-modules/pyarlo { };
pyarr = callPackage ../development/python-modules/pyarr { };
pyarrow = callPackage ../development/python-modules/pyarrow {
inherit (pkgs) arrow-cpp cmake;
};