Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / pyemby / default.nix
blob33180d742e4d7d1562093f669cf04c98d587f421
1 { lib
2 , aiohttp
3 , async-timeout
4 , buildPythonPackage
5 , fetchFromGitHub
6 }:
8 buildPythonPackage rec {
9   pname = "pyemby";
10   version = "1.9";
12   src = fetchFromGitHub {
13     owner = "mezz64";
14     repo = pname;
15     rev = version;
16     hash = "sha256-4mOQLfPbRzZzpNLvekJHVKiqdGGKPhW6BpKkyRfk2Pc=";
17   };
19   propagatedBuildInputs = [
20     aiohttp
21     async-timeout
22   ];
24   # Project has no tests
25   doCheck = false;
27   pythonImportsCheck = [ "pyemby" ];
29   meta = with lib; {
30     description = "Python library to interface with the Emby API";
31     homepage = "https://github.com/mezz64/pyemby";
32     license = with licenses; [ mit ];
33     maintainers = with maintainers; [ fab ];
34   };