1{
2 lib,
3 buildPythonPackage,
4 fetchurl,
5 isPyPy,
6 isPy3k,
7}:
8
9buildPythonPackage rec {
10 version = "0.4.10";
11 format = "setuptools";
12 pname = "mmpython";
13
14 src = fetchurl {
15 url = "https://sourceforge.net/projects/mmpython/files/latest/download";
16 sha256 = "1b7qfad3shgakj37gcj1b9h78j1hxlz6wp9k7h76pb4sq4bfyihy";
17 name = "${pname}-${version}.tar.gz";
18 };
19
20 disabled = isPyPy || isPy3k;
21
22 meta = with lib; {
23 description = "Media Meta Data retrieval framework";
24 homepage = "https://sourceforge.net/projects/mmpython/";
25 license = licenses.gpl2;
26 };
27}