mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
beets: Apply patch to fix unidecode>1.3.5 compat
This commit is contained in:
parent
2d798b38ac
commit
7d75060573
@ -1,4 +1,5 @@
|
|||||||
{ stdenv
|
{ stdenv
|
||||||
|
, fetchpatch
|
||||||
, bashInteractive
|
, bashInteractive
|
||||||
, diffPlugins
|
, diffPlugins
|
||||||
, glibcLocales
|
, glibcLocales
|
||||||
@ -51,6 +52,11 @@ python3Packages.buildPythonApplication rec {
|
|||||||
patches = [
|
patches = [
|
||||||
# Bash completion fix for Nix
|
# Bash completion fix for Nix
|
||||||
./patches/bash-completion-always-print.patch
|
./patches/bash-completion-always-print.patch
|
||||||
|
(fetchpatch {
|
||||||
|
# Fix unidecode>=1.3.5 compat
|
||||||
|
url = "https://github.com/beetbox/beets/commit/5ae1e0f3c8d3a450cb39f7933aa49bb78c2bc0d9.patch";
|
||||||
|
hash = "sha256-gqkrE+U1j3tt1qPRJufTGS/GftaSw/gweXunO/mCVG8=";
|
||||||
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = with python3Packages; [
|
propagatedBuildInputs = with python3Packages; [
|
||||||
|
Loading…
Reference in New Issue
Block a user