Merge pull request #290695 from fabaff/rova-bump

python311Packages.rova: 0.3.0 -> 0.4.0
This commit is contained in:
Fabian Affolter 2024-02-23 08:26:20 +01:00 committed by GitHub
commit a0163d100f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,22 +4,27 @@
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, requests , requests
, setuptools
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "rova"; pname = "rova";
version = "0.3.0"; version = "0.4.0";
format = "setuptools"; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "GidoHakvoort"; owner = "GidoHakvoort";
repo = pname; repo = "rova";
rev = "v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-TLL9Ta+7Xd55hGTTXjc6CBMj+tW1LpFrprpsnGqZvkQ="; hash = "sha256-6tICjph+ffS6OSMxzR4ANB4Q6sG1AKAgUN83DyEGpvo=";
}; };
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [ propagatedBuildInputs = [
requests requests
]; ];
@ -34,6 +39,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Module to access for ROVA calendars"; description = "Module to access for ROVA calendars";
homepage = "https://github.com/GidoHakvoort/rova"; homepage = "https://github.com/GidoHakvoort/rova";
changelog = "https://github.com/GidoHakvoort/rova/releases/tag/v${version}";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
}; };