Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / directv / default.nix
blobd8aaa9b7df677afc38078e30d205dfa39206ac78
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , aiohttp
5 , yarl
6 , aresponses
7 , pytest-asyncio
8 , pytestCheckHook
9 }:
11 buildPythonPackage rec {
12   pname = "directv";
13   version = "0.4.0";
14   format = "setuptools";
16   src = fetchFromGitHub {
17     owner = "ctalkington";
18     repo = "python-directv";
19     rev = version;
20     sha256 = "19jckf6qvl8fwi8yff1qy8c44xdz3zpi1ip1md6zl2c503qc91mk";
21   };
23   propagatedBuildInputs = [
24     aiohttp
25     yarl
26   ];
28   nativeCheckInputs = [
29     aresponses
30     pytest-asyncio
31     pytestCheckHook
32   ];
34   pythonImportsCheck = [ "directv" ];
36   meta = with lib; {
37     description = "Asynchronous Python client for DirecTV (SHEF)";
38     homepage = "https://github.com/ctalkington/python-directv";
39     license = licenses.mit;
40     maintainers = with maintainers; [ dotlambda ];
41   };