tk-calendar drv

This commit is contained in:
Anish Lakhwara
2023-01-01 16:49:09 +10:00
parent 19aebb049d
commit 5e49e3bb44
+18
View File
@@ -0,0 +1,18 @@
{ pkgs, ... }:
pkgs.python.buildPythonPackage rec {
pname = "tkcalendar";
version = "1.6.1";
src = pkgs.fetchFromGitHub {
owner = "j4321";
repo = "tkcalendar";
rev = "v${version}";
sha256 = "";
};
propagatedBuildInputs = [
pkgs.python310Packages.babel
];
pythonImportsCheck = [ "tkcalendar" ];
}