1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, flask 5, flask-silk 6, future 7}: 8 9buildPythonPackage rec { 10 pname = "Flask-AutoIndex"; 11 version = "0.6.1"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "0v87sa073hmj64f47sazbiw08kyxsxay100bd5084jwq7c1y92d7"; 16 }; 17 18 propagatedBuildInputs = [ 19 flask 20 flask-silk 21 future 22 ]; 23 24 meta = with stdenv.lib; { 25 description = "The mod_autoindex for Flask"; 26 longDescription = '' 27 Flask-AutoIndex generates an index page for your Flask application automatically. 28 The result is just like mod_autoindex, but the look is more awesome! 29 ''; 30 license = licenses.bsd2; 31 maintainers = with maintainers; [ timokau ]; 32 homepage = https://pythonhosted.org/Flask-AutoIndex/; 33 }; 34}