pythonPackages.pylama: 7.4.3 -> 7.5.5
This commit is contained in:
parent
80651cff84
commit
123e3a7e9d
@ -1,22 +1,23 @@
|
|||||||
{ lib, buildPythonPackage, fetchPypi, fetchpatch
|
{ lib, buildPythonPackage, fetchPypi
|
||||||
, mccabe, pycodestyle, pydocstyle, pyflakes
|
, eradicate, mccabe, pycodestyle, pydocstyle, pyflakes
|
||||||
, pytest, ipdb }:
|
, pytest, ipdb }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pylama";
|
pname = "pylama";
|
||||||
version = "7.4.3";
|
version = "7.5.5";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "390c1dab1daebdf3d6acc923e551b035c3faa77d8b96b98530c230493f9ec712";
|
sha256 = "1zg7wca9s5srvbj3kawalv4438l47hg7m6gaw8rd4i43lbyyqya6";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = fetchpatch {
|
propagatedBuildInputs = [
|
||||||
url = "${meta.homepage}/pull/116.patch";
|
eradicate
|
||||||
sha256 = "00jz5k2w0xahs1m3s603j6l4cwzz92qsbbk81fh17nq0f47999mv";
|
mccabe
|
||||||
};
|
pycodestyle
|
||||||
|
pydocstyle
|
||||||
propagatedBuildInputs = [ mccabe pycodestyle pydocstyle pyflakes ];
|
pyflakes
|
||||||
|
];
|
||||||
|
|
||||||
checkInputs = [ pytest ipdb ];
|
checkInputs = [ pytest ipdb ];
|
||||||
|
|
||||||
@ -27,7 +28,7 @@ buildPythonPackage rec {
|
|||||||
description = "Code audit tool for python";
|
description = "Code audit tool for python";
|
||||||
homepage = https://github.com/klen/pylama;
|
homepage = https://github.com/klen/pylama;
|
||||||
# ambiguous license declarations: https://github.com/klen/pylama/issues/64
|
# ambiguous license declarations: https://github.com/klen/pylama/issues/64
|
||||||
license = licenses.lgpl3;
|
license = [ licenses.lgpl3 ];
|
||||||
maintainers = with maintainers; [ dotlambda ];
|
maintainers = with maintainers; [ dotlambda ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user