Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, fetchPypi, buildPythonPackage, nose }: 2 3buildPythonPackage rec { 4 pname = "pytimeparse"; 5 version = "1.1.6"; 6 name = "${pname}-${version}"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "0imbb68i5n5fm704gv47if1blpxd4f8g16qmp5ar07cavgh2mibl"; 11 }; 12 13 propagatedBuildInputs = [ nose ]; 14 15 meta = with stdenv.lib; { 16 description = "A small Python library to parse various kinds of time expressions"; 17 homepage = "https://github.com/wroberts/pytimeparse"; 18 license = licenses.mit; 19 maintainers = with maintainers; [ vrthra ]; 20 }; 21}