mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
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`.
25 lines
599 B
Nix
25 lines
599 B
Nix
{ lib, buildPythonPackage, fetchPypi,
|
|
blinker, flask, mock, nose, speaklater
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "Flask-Mail";
|
|
version = "0.9.1";
|
|
|
|
meta = {
|
|
description = "Flask-Mail is a Flask extension providing simple email sending capabilities.";
|
|
homepage = "https://pypi.python.org/pypi/Flask-Mail";
|
|
license = lib.licenses.bsd3;
|
|
};
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0hazjc351s3gfbhk975j8k65cg4gf31yq404yfy0gx0bjjdfpr92";
|
|
};
|
|
|
|
propagatedBuildInputs = [ blinker flask ];
|
|
buildInputs = [ blinker mock nose speaklater ];
|
|
|
|
doCheck = false;
|
|
}
|