Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / flask-versioned / default.nix
blob1d54e49e417d22d782c00876a06b54225801da4b
1 { lib, buildPythonPackage, fetchFromGitHub, flask }:
3 buildPythonPackage rec {
4   pname = "flask-versioned";
5   version = "0.9.4-20101221";
7   src = fetchFromGitHub {
8     owner = "pilt";
9     repo = "flask-versioned";
10     rev = "38046fb53a09060de437c90a5f7370a6b94ffc31"; # no tags
11     sha256 = "1wim9hvx7lxzfg35c0nc7p34j4vw9mzisgijlz4ibgykah4g1y37";
12   };
14   propagatedBuildInputs = [ flask ];
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   };