mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 02:13:23 +00:00
Merge pull request #109504 from dotlambda/radicale-3.0.6
This commit is contained in:
commit
80bede2af5
@ -1,12 +1,12 @@
|
|||||||
{ lib, python3Packages, radicale3 }:
|
{ lib, stdenv, python3Packages, radicale3 }:
|
||||||
|
|
||||||
python3Packages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
pname = "etesync-dav";
|
pname = "etesync-dav";
|
||||||
version = "0.30.6";
|
version = "0.30.7";
|
||||||
|
|
||||||
src = python3Packages.fetchPypi {
|
src = python3Packages.fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "0cjz4p3a750fwvrxbzwda0sidw7nscahvppdshbsx49i6qrczpbg";
|
sha256 = "16b3105834dd6d9e374e976cad0978e1acfed0f0328c5054bc214550aea3e2c5";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with python3Packages; [
|
propagatedBuildInputs = with python3Packages; [
|
||||||
@ -24,5 +24,6 @@ python3Packages.buildPythonApplication rec {
|
|||||||
description = "Secure, end-to-end encrypted, and privacy respecting sync for contacts, calendars and tasks";
|
description = "Secure, end-to-end encrypted, and privacy respecting sync for contacts, calendars and tasks";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
maintainers = with maintainers; [ valodim ];
|
maintainers = with maintainers; [ valodim ];
|
||||||
|
broken = stdenv.isDarwin; # pyobjc-framework-Cocoa is missing
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
{ lib, python3, fetchFromGitHub }:
|
{ lib, python3 }:
|
||||||
|
|
||||||
python3.pkgs.buildPythonApplication rec {
|
python3.pkgs.buildPythonApplication rec {
|
||||||
pname = "radicale";
|
pname = "Radicale";
|
||||||
version = "3.0.5";
|
version = "3.0.6";
|
||||||
|
|
||||||
# No tests in PyPI tarball
|
src = python3.pkgs.fetchPypi {
|
||||||
src = fetchFromGitHub {
|
inherit pname version;
|
||||||
owner = "Kozea";
|
sha256 = "a9433d3df97135d9c02cec8dde4199444daf1b73ad161ded398d67b8e629fdc6";
|
||||||
repo = "Radicale";
|
|
||||||
rev = version;
|
|
||||||
sha256 = "0w8qkjm7b62cr49dbis41kvv3179sfmvvzlhlc0rbqss6vmwbq4p";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
|
Loading…
Reference in New Issue
Block a user