1 { lib, buildPythonPackage, fetchFromGitHub
4 buildPythonPackage rec {
5 pname = "click-datetime";
9 src = fetchFromGitHub {
10 owner = "click-contrib";
13 sha256 = "1yxagk4wd2h77nxml19bn2y26fv2xw2n9g981ls8mjy0g51ms3gh";
16 propagatedBuildInputs = [ click ];
21 pythonImportsCheck = [ "click_datetime" ];
24 description = "Datetime type support for click.";
25 homepage = "https://github.com/click-contrib/click-datetime";
26 license = licenses.mit;
27 maintainers = with maintainers; [ hexa ];