mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
e84a1c5c01
The changes in
e6178fe489
introduced in Flask 1.1.2 broke the tests of flask-assets.
27 lines
911 B
Nix
27 lines
911 B
Nix
{ lib, buildPythonPackage, fetchPypi, flask, webassets, flask_script, nose }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "Flask-Assets";
|
|
version = "2.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1dfdea35e40744d46aada72831f7613d67bf38e8b20ccaaa9e91fdc37aa3b8c2";
|
|
};
|
|
|
|
patchPhase = ''
|
|
substituteInPlace tests/test_integration.py --replace 'static_path=' 'static_url_path='
|
|
substituteInPlace tests/test_integration.py --replace "static_folder = '/'" "static_folder = '/x'"
|
|
substituteInPlace tests/test_integration.py --replace "'/foo'" "'/x/foo'"
|
|
'';
|
|
|
|
propagatedBuildInputs = [ flask webassets flask_script nose ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/miracle2k/flask-assets";
|
|
description = "Asset management for Flask, to compress and merge CSS and Javascript files";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|