summary refs log tree commit diff
path: root/pkgs/development/python-modules/twitter/default.nix
blob: 23d647d93153cba239e1651dde3838a50efa5f42 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "twitter";
  version = "1.18.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "acdc85e5beea752967bb64c63bde8b915c49a31a01db1b2fecccf9f2c1d5c44d";
  };

  doCheck = false;

  meta = with lib; {
    description = "Twitter API library";
    license     = licenses.mit;
    maintainers = with maintainers; [ thoughtpolice ];
  };

}