1{ lib, buildPythonPackage, fetchFromGitHub, flask }:
2
3buildPythonPackage rec {
4 pname = "Flask-Versioned";
5 version = "0.9.4-20101221";
6
7 src = fetchFromGitHub {
8 owner = "pilt";
9 repo = "flask-versioned";
10 rev = "38046fb53a09060de437c90a5f7370a6b94ffc31"; # no tags
11 sha256 = "1wim9hvx7lxzfg35c0nc7p34j4vw9mzisgijlz4ibgykah4g1y37";
12 };
13
14 propagatedBuildInputs = [ flask ];
15
16 meta = with lib; {
17 description = "Flask plugin to rewrite file paths to add version info";
18 homepage = "https://github.com/pilt/flask-versioned";
19 license = licenses.bsd3;
20 maintainers = with maintainers; [ ];
21 };
22}
23