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`.
23 lines
564 B
Nix
23 lines
564 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
, zope_testrunner, six, chardet}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ghdiff";
|
|
version = "0.4";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "17mdhi2sq9017nq8rkjhhc87djpi5z99xiil0xz17dyplr7nmkqk";
|
|
};
|
|
|
|
checkInputs = [ zope_testrunner ];
|
|
propagatedBuildInputs = [ six chardet ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/kilink/ghdiff;
|
|
license = licenses.mit;
|
|
description = "Generate Github-style HTML for unified diffs.";
|
|
maintainers = [ maintainers.mic92 ];
|
|
};
|
|
}
|