python.pkgs.mutagen: fix tests with updated pycodestyle
This commit is contained in:
parent
47061712cf
commit
50a85be787
|
@ -1,6 +1,7 @@
|
||||||
{ lib
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
|
, fetchpatch
|
||||||
, hypothesis
|
, hypothesis
|
||||||
, pycodestyle
|
, pycodestyle
|
||||||
, pyflakes
|
, pyflakes
|
||||||
|
@ -17,6 +18,12 @@ buildPythonPackage rec {
|
||||||
sha256 = "bb61e2456f59a9a4a259fbc08def6d01ba45a42da8eeaa97d00633b0ec5de71c";
|
sha256 = "bb61e2456f59a9a4a259fbc08def6d01ba45a42da8eeaa97d00633b0ec5de71c";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# fix tests with updated pycodestyle
|
||||||
|
patches = fetchpatch {
|
||||||
|
url = https://github.com/quodlibet/mutagen/commit/0ee86ef9d7e06639a388d0638732810b79998608.patch;
|
||||||
|
sha256 = "1bj3mpbv7krh5m1mvfl0z18s8wdxb1949zcnkcqxp2xl5fzsi288";
|
||||||
|
};
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
pkgs.faad2 pkgs.flac pkgs.vorbis-tools pkgs.liboggz
|
pkgs.faad2 pkgs.flac pkgs.vorbis-tools pkgs.liboggz
|
||||||
pkgs.glibcLocales pycodestyle pyflakes pytest hypothesis
|
pkgs.glibcLocales pycodestyle pyflakes pytest hypothesis
|
||||||
|
|
Loading…
Reference in New Issue