11 buildPythonPackage rec {
12 pname = "geocachingapi";
14 format = "setuptools";
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
20 repo = "geocachingapi-python";
21 rev = "refs/tags/${version}";
22 hash = "sha256-C4nj4KFEwsY5V5f0Q1x+9sD8Ihz5m7b3jg2pOyB/pDg=";
29 propagatedBuildInputs = [
35 # Tests require a token and network access
38 pythonImportsCheck = [
43 description = "Python API to control the Geocaching API";
44 homepage = "https://github.com/Sholofly/geocachingapi-python";
45 license = with licenses; [ mit ];
46 maintainers = with maintainers; [ fab ];