evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / strict-rfc3339 / default.nix
blob5f4cfe3b7c4bba6f4ce23d05c11a095f3c47d190
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "strict-rfc3339";
9   version = "0.7";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "5cad17bedfc3af57b399db0fed32771f18fc54bbd917e85546088607ac5e1277";
15   };
17   doCheck = false;
19   meta = with lib; {
20     homepage = "https://github.com/danielrichman/strict-rfc3339";
21     license = licenses.gpl3;
22     description = "Strict, simple, lightweight RFC3339 functions";
23     maintainers = with maintainers; [ vanschelven ];
24   };