1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "rfc3339"; 8 version = "6.2"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "1l6l1bh91i2r4dwcm86hlkx8cbh1xwgsk8hb4jvr5y5fxxg3ng6m"; 13 }; 14 15 # Project has no tests 16 doCheck = false; 17 18 pythonImportsCheck = [ "rfc3339" ]; 19 20 meta = with lib; { 21 description = "Format dates according to the RFC 3339"; 22 homepage = "https://hg.sr.ht/~henryprecheur/rfc3339"; 23 license = licenses.isc; 24 maintainers = with maintainers; [ fab ]; 25 }; 26}