Skip to content

Commit

Permalink
python312Packages.radicale-infcloud: modernize
Browse files Browse the repository at this point in the history
  • Loading branch information
dotlambda committed Nov 24, 2024
1 parent 8dca276 commit 077802d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions pkgs/development/python-modules/radicale-infcloud/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
fetchFromGitHub,
buildPythonPackage,
radicale,
setuptools,
}:

buildPythonPackage {
pname = "radicale-infcloud";
version = "unstable-2022-04-18";
format = "setuptools";
pyproject = true;

src = fetchFromGitHub {
owner = "Unrud";
Expand All @@ -17,7 +18,9 @@ buildPythonPackage {
hash = "sha256-xzBWIx2OOkCtBjlff1Z0VqgMhxWtgiOKutXUadT3tIo=";
};

propagatedBuildInputs = [ radicale ];
build-system = [ setuptools ];

dependencies = [ radicale ];

# has no tests
doCheck = false;
Expand All @@ -29,7 +32,7 @@ buildPythonPackage {
description = "Integrate InfCloud into Radicale's web interface";
license = with licenses; [
agpl3Plus
gpl3
gpl3Plus
];
maintainers = with maintainers; [ erictapen ];
};
Expand Down

0 comments on commit 077802d

Please sign in to comment.