fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
36 lines
776 B
Nix
36 lines
776 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildPythonPackage,
|
|
radicale,
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
pname = "radicale-infcloud";
|
|
version = "unstable-2022-04-18";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Unrud";
|
|
repo = "RadicaleInfCloud";
|
|
rev = "53d3a95af5b58cfa3242cef645f8d40c731a7d95";
|
|
hash = "sha256-xzBWIx2OOkCtBjlff1Z0VqgMhxWtgiOKutXUadT3tIo=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ radicale ];
|
|
|
|
# has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "radicale" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/Unrud/RadicaleInfCloud/";
|
|
description = "Integrate InfCloud into Radicale's web interface";
|
|
license = with licenses; [
|
|
agpl3Plus
|
|
gpl3
|
|
];
|
|
maintainers = with maintainers; [ erictapen ];
|
|
};
|
|
}
|