Unverified Commit 47d96e57 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #217771 from fabaff/meteofrance-api-bump

python310Packages.meteofrance-api: 1.1.0 -> 1.2.0 
parents 6eaf4f42 8076ea3f
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@

buildPythonPackage rec {
  pname = "meteofrance-api";
  version = "1.1.0";
  version = "1.2.0";
  format = "pyproject";

  disabled = pythonOlder "3.7";
@@ -21,8 +21,8 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "hacf-fr";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-1ZN/9ur6uhK7M5TurmmWgUjzkc79MPqKnT637hbAAWA=";
    rev = "refs/tags/v${version}";
    hash = "sha256-W26R+L2ZJpycEQ9KwkHqVARKsd/5YkJCxMeciKnKAX8=";
  };

  nativeBuildInputs = [
@@ -56,12 +56,14 @@ buildPythonPackage rec {
    "test_places"
    "test_rain"
    "test_session"
    "test_observation"
    "test_workflow"
  ];

  meta = with lib; {
    description = "Module to access information from the Meteo-France API";
    homepage = "https://github.com/hacf-fr/meteofrance-api";
    changelog = "https://github.com/hacf-fr/meteofrance-api/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };