Files
nixpkgs/pkgs/development/python-modules/flask-versioned/default.nix
T
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

28 lines
615 B
Nix

{
lib,
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 lib; {
description = "Flask plugin to rewrite file paths to add version info";
homepage = "https://github.com/pilt/flask-versioned";
license = licenses.bsd3;
maintainers = [ ];
};
}