1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pythonPackages.pylama: 7.4.3 -> 7.5.5

This commit is contained in:
Manuel Mendez 2018-10-04 21:27:47 -04:00 committed by Frederik Rietdijk
parent 80651cff84
commit 123e3a7e9d

View file

@ -1,22 +1,23 @@
{ lib, buildPythonPackage, fetchPypi, fetchpatch
, mccabe, pycodestyle, pydocstyle, pyflakes
{ lib, buildPythonPackage, fetchPypi
, eradicate, mccabe, pycodestyle, pydocstyle, pyflakes
, pytest, ipdb }:
buildPythonPackage rec {
pname = "pylama";
version = "7.4.3";
version = "7.5.5";
src = fetchPypi {
inherit pname version;
sha256 = "390c1dab1daebdf3d6acc923e551b035c3faa77d8b96b98530c230493f9ec712";
sha256 = "1zg7wca9s5srvbj3kawalv4438l47hg7m6gaw8rd4i43lbyyqya6";
};
patches = fetchpatch {
url = "${meta.homepage}/pull/116.patch";
sha256 = "00jz5k2w0xahs1m3s603j6l4cwzz92qsbbk81fh17nq0f47999mv";
};
propagatedBuildInputs = [ mccabe pycodestyle pydocstyle pyflakes ];
propagatedBuildInputs = [
eradicate
mccabe
pycodestyle
pydocstyle
pyflakes
];
checkInputs = [ pytest ipdb ];
@ -27,7 +28,7 @@ buildPythonPackage rec {
description = "Code audit tool for python";
homepage = https://github.com/klen/pylama;
# ambiguous license declarations: https://github.com/klen/pylama/issues/64
license = licenses.lgpl3;
license = [ licenses.lgpl3 ];
maintainers = with maintainers; [ dotlambda ];
};
}