Merge pull request #168488 from r-ryantm/auto-update/python3.10-geocachingapi

python310Packages.geocachingapi: 0.1.0 -> 0.1.1
This commit is contained in:
Fabian Affolter 2022-04-13 21:30:30 +02:00 committed by GitHub
commit 8ce22fa5bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,19 +3,23 @@
, backoff
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, setuptools-scm
, yarl
}:
buildPythonPackage rec {
pname = "geocachingapi";
version = "0.1.0";
version = "0.1.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "Sholofly";
repo = "geocachingapi-python";
rev = version;
sha256 = "1vdknsxd7rvw6g5lwxlxj97l9ic8cch8rdki3aczs6xzw5adxhcs";
rev = "refs/tags/${version}";
sha256 = "sha256-Aj1fZ0dGlV7ynoZ7QwGrbku+IpOCx85wE19JDJaaYmc=";
};
nativeBuildInputs = [
@ -33,7 +37,9 @@ buildPythonPackage rec {
# Tests require a token and network access
doCheck = false;
pythonImportsCheck = [ "geocachingapi" ];
pythonImportsCheck = [
"geocachingapi"
];
meta = with lib; {
description = "Python API to control the Geocaching API";