Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 22 lines 454 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "timelib"; 8 version = "0.2.4"; 9 10 src = fetchPypi { 11 inherit pname version; 12 extension = "zip"; 13 sha256 = "49142233bdb5971d64a41e05a1f80a408a02be0dc7d9f8c99e7bdd0613ba81cb"; 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}