nixpkgs/pkgs/development/python-modules/ghdiff/default.nix
Frederik Rietdijk ced21f5e1a pythonPackages: remove name attribute`
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`.
2018-06-23 18:14:26 +02:00

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 ];
};
}