Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / rfc3339 / default.nix
blob9c5faa38131cb6ff32c07cd5f42f962c8af82b80
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "rfc3339";
8   version = "6.2";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "1l6l1bh91i2r4dwcm86hlkx8cbh1xwgsk8hb4jvr5y5fxxg3ng6m";
14   };
16   # Project has no tests
17   doCheck = false;
19   pythonImportsCheck = [ "rfc3339" ];
21   meta = with lib; {
22     description = "Format dates according to the RFC 3339";
23     homepage = "https://hg.sr.ht/~henryprecheur/rfc3339";
24     license = licenses.isc;
25     maintainers = with maintainers; [ fab ];
26   };