ced21f5e1a
The `buildPython*` function computes name from `pname` and `version`. This change removes `name` attribute from all expressions in `pkgs/development/python-modules`. While at it, some other minor changes were made as well, such as replacing `fetchurl` calls with `fetchPypi`.
21 lines
600 B
Nix
21 lines
600 B
Nix
{ lib, buildPythonPackage, fetchPypi, flask, webassets, flask_script, nose }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "Flask-Assets";
|
|
version = "0.12";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0ivqsihk994rxw58vdgzrx4d77d7lpzjm4qxb38hjdgvi5xm4cb0";
|
|
};
|
|
|
|
propagatedBuildInputs = [ flask webassets flask_script nose ];
|
|
|
|
meta = with lib; {
|
|
homepage = https://github.com/miracle2k/flask-assets;
|
|
description = "Asset management for Flask, to compress and merge CSS and Javascript files";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|