nixpkgs/pkgs/development/python-modules/click-plugins/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

29 lines
600 B
Nix

{ stdenv, buildPythonPackage, fetchPypi,
click, pytest
}:
buildPythonPackage rec {
pname = "click-plugins";
version = "1.0.3";
src = fetchPypi {
inherit pname version;
sha256 = "1ifphgaw5mmcdnqd0qfnmrbm62q3k6p573aff4cxgpyjxmz5xk3s";
};
propagatedBuildInputs = [
click
];
checkInputs = [
pytest
];
meta = with stdenv.lib; {
description = "An extension module for click to enable registering CLI commands";
homepage = https://github.com/click-contrib/click-plugins;
license = licenses.bsd3;
maintainers = with maintainers; [ knedlsepp ];
};
}