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`.
20 lines
425 B
Nix
20 lines
425 B
Nix
{ stdenv, buildPythonPackage, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.7.5";
|
|
pname = "pyfiglet";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "04jy4182hn5xfs6jf432gxclfj1rhssd7bsf0b4gymrjzkhr8qa4";
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "FIGlet in pure Python";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
|
};
|
|
}
|