Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 454 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "timelib"; 8 version = "0.2.5"; 9 10 src = fetchPypi { 11 inherit pname version; 12 extension = "zip"; 13 sha256 = "6ac9f79b09b63bbc07db88525c1f62de1f6d50b0fd9937a0cb05e3d38ce0af45"; 14 }; 15 16 meta = with stdenv.lib; { 17 description = "Parse english textual date descriptions"; 18 homepage = "https://github.com/pediapress/timelib/"; 19 license = licenses.zlib; 20 }; 21 22}