4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
24 lines
640 B
Nix
24 lines
640 B
Nix
{ lib, 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 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 ];
|
|
};
|
|
}
|
|
|