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