2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
fetchFromGitHub,
|
|
|
|
buildPythonPackage,
|
|
|
|
radicale,
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage {
|
2024-01-13 08:15:51 +00:00
|
|
|
pname = "radicale-infcloud";
|
2022-09-30 11:47:45 +00:00
|
|
|
version = "unstable-2022-04-18";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Unrud";
|
|
|
|
repo = "RadicaleInfCloud";
|
2022-09-30 11:47:45 +00:00
|
|
|
rev = "53d3a95af5b58cfa3242cef645f8d40c731a7d95";
|
2023-03-15 16:39:30 +00:00
|
|
|
hash = "sha256-xzBWIx2OOkCtBjlff1Z0VqgMhxWtgiOKutXUadT3tIo=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-09-30 11:47:45 +00:00
|
|
|
propagatedBuildInputs = [ radicale ];
|
|
|
|
|
|
|
|
# has no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "radicale" ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://github.com/Unrud/RadicaleInfCloud/";
|
|
|
|
description = "Integrate InfCloud into Radicale's web interface";
|
2024-06-05 15:53:02 +00:00
|
|
|
license = with licenses; [
|
|
|
|
agpl3Plus
|
|
|
|
gpl3
|
|
|
|
];
|
2023-01-11 07:51:40 +00:00
|
|
|
maintainers = with maintainers; [ erictapen ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|