this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

tk-calendar drv

+18
+18
pkgs/tkcalendar-py.nix
··· 1 + { pkgs, ... }: 2 + pkgs.python.buildPythonPackage rec { 3 + pname = "tkcalendar"; 4 + version = "1.6.1"; 5 + 6 + src = pkgs.fetchFromGitHub { 7 + owner = "j4321"; 8 + repo = "tkcalendar"; 9 + rev = "v${version}"; 10 + sha256 = ""; 11 + }; 12 + 13 + propagatedBuildInputs = [ 14 + pkgs.python310Packages.babel 15 + ]; 16 + 17 + pythonImportsCheck = [ "tkcalendar" ]; 18 + }