Merge pull request #300585 from r-ryantm/auto-update/python311Packages.herepy

python311Packages.herepy: 3.6.0 -> 3.6.1
This commit is contained in:
Robert Schütz 2024-04-01 02:08:52 +00:00 committed by GitHub
commit 545b6a6859
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,6 +2,7 @@
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, setuptools
, requests
, pytestCheckHook
, responses
@ -9,19 +10,23 @@
buildPythonPackage rec {
pname = "herepy";
version = "3.6.0";
format = "setuptools";
version = "3.6.1";
pyproject = true;
disabled = pythonOlder "3.5";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "abdullahselek";
repo = "HerePy";
rev = "refs/tags/${version}";
hash = "sha256-wz6agxPKQvWobRIiYKYU2og33tzswd0qG1hawPCh1qI=";
hash = "sha256-DOtlXoVelTGY/fKkHW/K0d0w52Q7N91Whi9AHG4tRZQ=";
};
propagatedBuildInputs = [
build-system = [
setuptools
];
dependencies = [
requests
];
@ -35,6 +40,7 @@ buildPythonPackage rec {
];
meta = with lib; {
changelog = "https://github.com/abdullahselek/HerePy/releases/tag/${version}";
description = "Library that provides a Python interface to the HERE APIs";
homepage = "https://github.com/abdullahselek/HerePy";
license = licenses.mit;