Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / click-datetime / default.nix
blob5e570130f03066ab987a8e0ea6e03e651b98b495
1 { lib, buildPythonPackage, fetchFromGitHub
2 , click }:
4 buildPythonPackage rec {
5   pname = "click-datetime";
6   version = "0.2.0";
7   format = "setuptools";
9   src = fetchFromGitHub {
10     owner = "click-contrib";
11     repo = pname;
12     rev = version;
13     sha256 = "1yxagk4wd2h77nxml19bn2y26fv2xw2n9g981ls8mjy0g51ms3gh";
14   };
16   propagatedBuildInputs = [ click ];
18   # no tests
19   doCheck = false;
21   pythonImportsCheck = [ "click_datetime" ];
23   meta = with lib; {
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 ];
28   };