nixpkgs/pkgs/development/python-modules/flickrapi/default.nix
2021-07-21 13:32:49 +02:00

36 lines
925 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, requests
, requests_toolbelt
, requests_oauthlib
, pytest
, pytest-runner
, pytest-cov
, responses
}:
buildPythonPackage rec {
pname = "flickrapi";
version = "2.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "03g2z21k6nhxgwysjrgnxj9m1yg25mnnkr10gpyfhfkd9w77pcpz";
};
propagatedBuildInputs = [ requests requests_toolbelt requests_oauthlib ];
checkInputs = [ pytest pytest-runner pytest-cov 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 ];
};
}