mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 04:33:57 +00:00
69 lines
1.3 KiB
Nix
69 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 ];
|
|
};
|
|
}
|