nixpkgs/pkgs/development/python-modules/sonarr/default.nix
2021-06-29 12:08:25 +02:00

42 lines
764 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, aiohttp
, yarl
, aresponses
, pytest-asyncio
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "sonarr";
version = "0.3.0";
src = fetchFromGitHub {
owner = "ctalkington";
repo = "python-sonarr";
rev = version;
sha256 = "0gi34951qhzzrq59hj93mnkid8cvvknlamkhir6ya9mb23fr7bya";
};
propagatedBuildInputs = [
aiohttp
yarl
];
checkInputs = [
aresponses
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [ "sonarr" ];
meta = with lib; {
description = "Asynchronous Python client for the Sonarr API";
homepage = "https://github.com/ctalkington/python-sonarr";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}