mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
Merge pull request #185102 from onny/pyarr
python310Packages.pyarr: init at 4.1.0
This commit is contained in:
commit
cd56506d94
30
pkgs/development/python-modules/pyarr/default.nix
Normal file
30
pkgs/development/python-modules/pyarr/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -7151,6 +7151,8 @@ in {
|
|||||||
|
|
||||||
pyarlo = callPackage ../development/python-modules/pyarlo { };
|
pyarlo = callPackage ../development/python-modules/pyarlo { };
|
||||||
|
|
||||||
|
pyarr = callPackage ../development/python-modules/pyarr { };
|
||||||
|
|
||||||
pyarrow = callPackage ../development/python-modules/pyarrow {
|
pyarrow = callPackage ../development/python-modules/pyarrow {
|
||||||
inherit (pkgs) arrow-cpp cmake;
|
inherit (pkgs) arrow-cpp cmake;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user