about summary refs log tree commit diff
path: root/pkgs/development/python-modules/twitter/default.nix
blob: d8f863cab8b5b3ad8f41807e3b91f69d5a7b1fe5 (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
{ stdenv
, buildPythonPackage
, fetchPypi
}:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "1m6b17irb9klc345k8174pni724jzy2973z2x2jg69h83hipjw2c";
  };

  doCheck = false;

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

}