python3Packages.rova: init at 0.3.0

This commit is contained in:
Fabian Affolter 2022-04-16 22:21:10 +02:00
parent 603b07bfb2
commit 0a25dbfa97
2 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,40 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, requests
}:
buildPythonPackage rec {
pname = "rova";
version = "0.3.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "GidoHakvoort";
repo = pname;
rev = "v${version}";
hash = "sha256-TLL9Ta+7Xd55hGTTXjc6CBMj+tW1LpFrprpsnGqZvkQ=";
};
propagatedBuildInputs = [
requests
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"rova"
];
meta = with lib; {
description = "Module to access for ROVA calendars";
homepage = "https://github.com/GidoHakvoort/rova";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -8946,6 +8946,8 @@ in {
routes = callPackage ../development/python-modules/routes { };
rova = callPackage ../development/python-modules/rova { };
rpcq = callPackage ../development/python-modules/rpcq { };
rpdb = callPackage ../development/python-modules/rpdb { };