Unverified Commit a0163d10 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #290695 from fabaff/rova-bump

python311Packages.rova: 0.3.0 -> 0.4.0
parents ea7b7d9a b7f5a756
Loading
Loading
Loading
Loading
+11 −5
Original line number Diff line number Diff line
@@ -4,22 +4,27 @@
, pytestCheckHook
, pythonOlder
, requests
, setuptools
}:

buildPythonPackage rec {
  pname = "rova";
  version = "0.3.0";
  format = "setuptools";
  version = "0.4.0";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "GidoHakvoort";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-TLL9Ta+7Xd55hGTTXjc6CBMj+tW1LpFrprpsnGqZvkQ=";
    repo = "rova";
    rev = "refs/tags/v${version}";
    hash = "sha256-6tICjph+ffS6OSMxzR4ANB4Q6sG1AKAgUN83DyEGpvo=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [
    requests
  ];
@@ -34,6 +39,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Module to access for ROVA calendars";
    homepage = "https://github.com/GidoHakvoort/rova";
    changelog = "https://github.com/GidoHakvoort/rova/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };