summary refs log tree commit diff
path: root/pkgs/development/python-modules/mmpython/default.nix
blob: dbb6590eee6d5d24ef28b7aeb89ddb7043db75e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv
, buildPythonPackage
, fetchurl
, isPyPy
, isPy3k
}:

buildPythonPackage rec {
  version = "0.4.10";
  pname = "mmpython";

  src = fetchurl {
    url = "https://sourceforge.net/projects/mmpython/files/latest/download";
    sha256 = "1b7qfad3shgakj37gcj1b9h78j1hxlz6wp9k7h76pb4sq4bfyihy";
    name = "${pname}-${version}.tar.gz";
  };

  disabled = isPyPy || isPy3k;

  meta = with stdenv.lib; {
    description = "Media Meta Data retrieval framework";
    homepage = "https://sourceforge.net/projects/mmpython/";
    license = licenses.gpl2;
  };

}