1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "udatetime"; 8 version = "0.0.17"; 9 10 src = fetchPypi { 11 inherit pname version; 12 hash = "sha256-sQvFVwaZpDinLitaZOdr2MKO4779FvIJOHpVB/oLgwE="; 13 }; 14 15 # tests not included on pypi 16 doCheck = false; 17 18 pythonImportsCheck = [ "udatetime" ]; 19 20 meta = with lib; { 21 description = "Fast RFC3339 compliant Python date-time library"; 22 homepage = "https://github.com/freach/udatetime"; 23 license = licenses.asl20; 24 maintainers = with maintainers; [ globin ]; 25 }; 26}