python.pkgs.flask-versioned: init at 0.9.4-20101221

This commit is contained in:
Robin Gloster 2020-04-14 00:09:48 +02:00
parent 7a68da69ba
commit 1a2852b447
No known key found for this signature in database
GPG key ID: D5C458DF6DD97EDF
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, buildPythonPackage, fetchFromGitHub, flask }:
buildPythonPackage rec {
pname = "Flask-Versioned";
version = "0.9.4-20101221";
src = fetchFromGitHub {
owner = "pilt";
repo = "flask-versioned";
rev = "38046fb53a09060de437c90a5f7370a6b94ffc31"; # no tags
sha256 = "1wim9hvx7lxzfg35c0nc7p34j4vw9mzisgijlz4ibgykah4g1y37";
};
propagatedBuildInputs = [ flask ];
meta = with stdenv.lib; {
description = "Flask plugin to rewrite file paths to add version info";
homepage = https://github.com/pilt/flask-versioned;
license = licenses.bsd3;
maintainers = with maintainers; [ globin ];
};
}

View file

@ -3711,6 +3711,8 @@ in {
flask_testing = callPackage ../development/python-modules/flask-testing { };
flask-versioned = callPackage ../development/python-modules/flask-versioned { };
flask_wtf = callPackage ../development/python-modules/flask-wtf { };
wtforms = callPackage ../development/python-modules/wtforms { };