1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "strict-rfc3339"; 5 version = "0.7"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "5cad17bedfc3af57b399db0fed32771f18fc54bbd917e85546088607ac5e1277"; 10 }; 11 12 doCheck = false; 13 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 }; 20}