mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
python.pkgs.pylint_1_9: 1.9.4 -> 1.9.5
Also fix build by skipping a test that requires setuptools to be present. (Also just adding setuptools does not fix the issue either?)
This commit is contained in:
parent
e0b945b166
commit
08d556c0e8
|
@ -4,7 +4,7 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "pylint";
|
||||
version = "1.9.4";
|
||||
version = "1.9.5";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
|
@ -24,6 +24,8 @@ buildPythonPackage rec {
|
|||
pytest pylint/test -k "not ${lib.concatStringsSep " and not " (
|
||||
[ # Broken test
|
||||
"test_good_comprehension_checks"
|
||||
# requires setuptools
|
||||
"test_pkginfo"
|
||||
# See PyCQA/pylint#2535
|
||||
"test_libmodule" ] ++
|
||||
# Disable broken darwin tests
|
||||
|
|
Loading…
Reference in a new issue