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
440 B
Nix
21 lines
440 B
Nix
{buildPythonPackage, lib, nose, fetchPypi}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "titlecase";
|
|
version = "0.12.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0486i99wf8ssa7sgn81fn6fv6i4rhhq6n751bc740b3hzfbpmpl4";
|
|
};
|
|
|
|
checkInputs = [ nose ];
|
|
|
|
meta = {
|
|
homepage = https://github.com/ppannuto/python-titlecase;
|
|
description = "Python Port of John Gruber's titlecase.pl";
|
|
license = lib.licenses.mit;
|
|
};
|
|
}
|
|
|