at 24.11-pre 866 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 pytestCheckHook, 6 pythonOlder, 7 requests, 8 setuptools, 9}: 10 11buildPythonPackage rec { 12 pname = "rova"; 13 version = "0.4.1"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.7"; 17 18 src = fetchFromGitHub { 19 owner = "GidoHakvoort"; 20 repo = "rova"; 21 rev = "refs/tags/v${version}"; 22 hash = "sha256-y73Vf/E2xDy+2vnvZEllRUgsDfX33Q7AsL/UY2pR1sI="; 23 }; 24 25 nativeBuildInputs = [ setuptools ]; 26 27 propagatedBuildInputs = [ requests ]; 28 29 # Module has no tests 30 doCheck = false; 31 32 pythonImportsCheck = [ "rova" ]; 33 34 meta = with lib; { 35 description = "Module to access for ROVA calendars"; 36 homepage = "https://github.com/GidoHakvoort/rova"; 37 changelog = "https://github.com/GidoHakvoort/rova/releases/tag/v${version}"; 38 license = licenses.mit; 39 maintainers = with maintainers; [ fab ]; 40 }; 41}