summary refs log tree commit diff
path: root/pkgs/development/python-modules/flickrapi
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/flickrapi')
-rw-r--r--pkgs/development/python-modules/flickrapi/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/flickrapi/default.nix b/pkgs/development/python-modules/flickrapi/default.nix
new file mode 100644
index 00000000000..88dfff3aa8f
--- /dev/null
+++ b/pkgs/development/python-modules/flickrapi/default.nix
@@ -0,0 +1,35 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, requests
+, requests_toolbelt
+, requests_oauthlib
+, pytest
+, pytestrunner
+, pytestcov
+, responses
+}:
+
+buildPythonPackage rec {
+  pname   = "flickrapi";
+  version = "2.4.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "03g2z21k6nhxgwysjrgnxj9m1yg25mnnkr10gpyfhfkd9w77pcpz";
+  };
+
+  propagatedBuildInputs = [ requests requests_toolbelt requests_oauthlib ];
+
+  checkInputs = [ pytest pytestrunner pytestcov responses ];
+  doCheck = false; # Otherwise:
+  # ========================= no tests ran in 0.01 seconds =========================
+  # builder for '/nix/store/c8a58v6aa18zci08q2l53s12ywn8jqhq-python3.6-flickrapi-2.4.0.drv' failed with exit code 5
+
+  meta = {
+    description = "A Python interface to the Flickr API";
+    homepage    = https://stuvel.eu/flickrapi;
+    license     = lib.licenses.psfl;
+    maintainers = with lib.maintainers; [ obadz ];
+  };
+}