ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / strict-rfc3339 / default.nix
blobe76365a525adff08a0c9c101fc9aac7b1b49054d
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "strict-rfc3339";
5   version = "0.7";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "5cad17bedfc3af57b399db0fed32771f18fc54bbd917e85546088607ac5e1277";
10   };
12   doCheck = false;
14   meta = with lib; {
15     homepage = "https://github.com/danielrichman/strict-rfc3339";
16     license = licenses.gpl3;
17     description = "Strict, simple, lightweight RFC3339 functions";
18     maintainers = with maintainers; [ vanschelven ];
19   };