summary refs log tree commit diff
path: root/pkgs/development/python-modules/tweepy
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-04-26 08:46:54 +0200
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-04-26 08:48:41 +0200
commite04a4d3c9ebc5e6725091238f7b530b6e55a77fe (patch)
tree2215d662bc9c5f2fc08c615aa74074fd98eecf26 /pkgs/development/python-modules/tweepy
parentdf7efec99533e5c21530051a174e0a5ad19f8856 (diff)
downloadnixlib-e04a4d3c9ebc5e6725091238f7b530b6e55a77fe.tar
nixlib-e04a4d3c9ebc5e6725091238f7b530b6e55a77fe.tar.gz
nixlib-e04a4d3c9ebc5e6725091238f7b530b6e55a77fe.tar.bz2
nixlib-e04a4d3c9ebc5e6725091238f7b530b6e55a77fe.tar.lz
nixlib-e04a4d3c9ebc5e6725091238f7b530b6e55a77fe.tar.xz
nixlib-e04a4d3c9ebc5e6725091238f7b530b6e55a77fe.tar.zst
nixlib-e04a4d3c9ebc5e6725091238f7b530b6e55a77fe.zip
python.pkgs.tweepy: move expression
Diffstat (limited to 'pkgs/development/python-modules/tweepy')
-rw-r--r--pkgs/development/python-modules/tweepy/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/tweepy/default.nix b/pkgs/development/python-modules/tweepy/default.nix
new file mode 100644
index 000000000000..562edf3d15ab
--- /dev/null
+++ b/pkgs/development/python-modules/tweepy/default.nix
@@ -0,0 +1,21 @@
+{ lib, buildPythonPackage, fetchPypi, requests, six, requests_oauthlib }:
+
+buildPythonPackage rec {
+  pname = "tweepy";
+  version = "3.5.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0n2shilamgwhzmvf534xg7f6hrnznbixyl5pw2f5a3f391gwy37h";
+  };
+
+  doCheck = false;
+  propagatedBuildInputs = [ requests six requests_oauthlib ];
+
+  meta = with lib; {
+    homepage = https://github.com/tweepy/tweepy;
+    description = "Twitter library for python";
+    license = licenses.mit;
+    maintainers = with maintainers; [ garbas ];
+  };
+}