Merge pull request #49651 from danieldk/picard-2.0.4
picard: 1.4.2 -> 2.0.4
This commit is contained in:
commit
83aad784a7
@ -1,21 +1,22 @@
|
|||||||
{ stdenv, python2Packages, fetchurl, gettext }:
|
{ stdenv, python3Packages, fetchurl, gettext, chromaprint }:
|
||||||
|
|
||||||
let
|
let
|
||||||
pythonPackages = python2Packages;
|
pythonPackages = python3Packages;
|
||||||
in pythonPackages.buildPythonApplication rec {
|
in pythonPackages.buildPythonApplication rec {
|
||||||
pname = "picard";
|
pname = "picard";
|
||||||
version = "1.4.2";
|
version = "2.0.4";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://ftp.musicbrainz.org/pub/musicbrainz/picard/picard-${version}.tar.gz";
|
url = "http://ftp.musicbrainz.org/pub/musicbrainz/picard/picard-${version}.tar.gz";
|
||||||
sha256 = "0d12k40d9fbcn801gp5zdsgvjdrh4g97vda3ga16rmmvfwwfxbgh";
|
sha256 = "0ds3ylpqn717fnzcjrfn05v5xram01bj6n3hwn9igmkd1jgf8vhc";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ gettext ];
|
buildInputs = [ gettext ];
|
||||||
|
|
||||||
propagatedBuildInputs = with pythonPackages; [
|
propagatedBuildInputs = with pythonPackages; [
|
||||||
pyqt4
|
pyqt5
|
||||||
mutagen
|
mutagen
|
||||||
|
chromaprint
|
||||||
discid
|
discid
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -23,6 +24,11 @@ in pythonPackages.buildPythonApplication rec {
|
|||||||
python setup.py install --prefix="$out"
|
python setup.py install --prefix="$out"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
prePatch = ''
|
||||||
|
# Pesky unicode punctuation.
|
||||||
|
substituteInPlace setup.cfg --replace "‘" "'"
|
||||||
|
'';
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
Loading…
Reference in New Issue
Block a user