depot/third_party/nixpkgs/pkgs/development/python-modules/flickrapi/default.nix
Default email 889482aab3 Project import generated by Copybara.
GitOrigin-RevId: f2537a505d45c31fe5d9c27ea9829b6f4c4e6ac5
2022-06-26 12:26:21 +02:00

68 lines
1.3 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, requests
, requests-toolbelt
, requests-oauthlib
, six
, pytestCheckHook
, responses
, pythonOlder
}:
buildPythonPackage rec {
pname = "flickrapi";
version = "2.4";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "sybrenstuvel";
repo = pname;
rev = "version-${version}";
hash = "sha256-vRZrlXKI0UDdmDevh3XUngH4X8G3VlOCSP0z/rxhIgw=";
};
propagatedBuildInputs = [
requests
requests-toolbelt
requests-oauthlib
six
];
checkInputs = [
pytestCheckHook
responses
];
preCheck = ''
export HOME=$(mktemp -d);
'';
disabledTests = [
# Tests require network access
"test_default_format"
"test_etree_default_format"
"test_etree_format_error"
"test_etree_format_happy"
"test_explicit_format"
"test_json_callback_format"
"test_json_format"
"test_parsed_json_format"
"test_walk"
"test_xmlnode_format"
"test_xmlnode_format_error"
];
pythonImportsCheck = [
"flickrapi"
];
meta = with lib; {
description = "A Python interface to the Flickr API";
homepage = "https://stuvel.eu/flickrapi";
license = licenses.psfl;
maintainers = with maintainers; [ obadz ];
};
}