My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/flickrapi/default.nix

66 lines
1.2 KiB

{ lib
, buildPythonPackage
, fetchFromGitHub
, requests
, requests-toolbelt
, requests-oauthlib
, 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
];
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 ];
};
}