Skip to content

Commit

Permalink
calcure: refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff committed Jan 14, 2024
1 parent 06cbb08 commit c35f2b0
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions pkgs/applications/misc/calcure/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,33 +6,34 @@
python3.pkgs.buildPythonApplication rec {
pname = "calcure";
version = "3.0.1";
format = "pyproject";
pyproject = true;

src = fetchFromGitHub {
owner = "anufrievroman";
repo = "calcure";
rev = version;
rev = "refs/tags/${version}";
hash = "sha256-rs3TCZjMndeh2N7e+U62baLs+XqWK1Mk7KVnypSnWPg=";
};

nativeBuildInputs = [
python3.pkgs.setuptools
python3.pkgs.wheel
nativeBuildInputs = with python3.pkgs; [
setuptools
];

propagatedBuildInputs = with python3.pkgs; [
jdatetime
holidays
icalendar
ics
attrs
jdatetime
taskw
];

pythonImportsCheck = [ "calcure" ];
pythonImportsCheck = [
"calcure"
];

meta = with lib; {
description = "Modern TUI calendar and task manager with minimal and customizable UI";
homepage = "https://github.com/anufrievroman/calcure";
changelog = "https://github.com/anufrievroman/calcure/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ dit7ya ];
};
Expand Down

0 comments on commit c35f2b0

Please sign in to comment.