Commit a74f76e5 authored by Robert Schütz's avatar Robert Schütz
Browse files
parent 0a087411
Loading
Loading
Loading
Loading
+11 −5
Original line number Diff line number Diff line
@@ -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;