1{ 2 lib, 3 fetchFromGitHub, 4 buildPythonPackage, 5 radicale, 6 setuptools, 7}: 8 9buildPythonPackage { 10 pname = "radicale-infcloud"; 11 version = "unstable-2022-04-18"; 12 pyproject = true; 13 14 src = fetchFromGitHub { 15 owner = "Unrud"; 16 repo = "RadicaleInfCloud"; 17 rev = "53d3a95af5b58cfa3242cef645f8d40c731a7d95"; 18 hash = "sha256-xzBWIx2OOkCtBjlff1Z0VqgMhxWtgiOKutXUadT3tIo="; 19 }; 20 21 build-system = [ setuptools ]; 22 23 dependencies = [ radicale ]; 24 25 # has no tests 26 doCheck = false; 27 28 pythonImportsCheck = [ "radicale" ]; 29 30 meta = with lib; { 31 homepage = "https://github.com/Unrud/RadicaleInfCloud/"; 32 description = "Integrate InfCloud into Radicale's web interface"; 33 license = with licenses; [ 34 agpl3Plus 35 gpl3Plus 36 ]; 37 maintainers = with maintainers; [ erictapen ]; 38 }; 39}