Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / twitterapi / default.nix
blob72185f243beddcf168e57a4cfecee1e4d3ab419a
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , requests
5 , requests-oauthlib
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "twitterapi";
11   version = "2.8.2";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "geduldig";
18     repo = "TwitterAPI";
19     rev = "refs/tags/v${version}";
20     hash = "sha256-4Z8XfgRhQXawCvaXM+kyMO3fejvXIF2LgVdmfXDDqIA=";
21   };
23   propagatedBuildInputs = [
24     requests
25     requests-oauthlib
26   ];
28   # Tests are interacting with the Twitter API
29   doCheck = false;
31   pythonImportsCheck = [
32     "TwitterAPI"
33   ];
35   meta = with lib; {
36     description = "Python wrapper for Twitter's REST and Streaming APIs";
37     homepage = "https://github.com/geduldig/TwitterAPI";
38     changelog = "https://github.com/geduldig/TwitterAPI/blob/v${version}/CHANGE.log";
39     license = with licenses; [ mit ];
40     maintainers = with maintainers; [ fab ];
41   };