1 { lib, buildPythonPackage, fetchPypi, flask, webassets, flask-script, nose }:
3 buildPythonPackage rec {
4 pname = "flask-assets";
8 pname = "Flask-Assets";
10 hash = "sha256-Hf3qNeQHRNRqracoMfdhPWe/OOiyDMqqnpH9w3qjuMI=";
14 substituteInPlace tests/test_integration.py --replace 'static_path=' 'static_url_path='
15 substituteInPlace tests/test_integration.py --replace "static_folder = '/'" "static_folder = '/x'"
16 substituteInPlace tests/test_integration.py --replace "'/foo'" "'/x/foo'"
19 propagatedBuildInputs = [ flask webassets flask-script nose ];
22 homepage = "https://github.com/miracle2k/flask-assets";
23 description = "Asset management for Flask, to compress and merge CSS and Javascript files";
24 license = licenses.bsd2;
25 maintainers = with maintainers; [ abbradar ];