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