Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / mmpython / default.nix
blob64c270ca0722844205a056f69896e06f9eddf0ca
1 { lib
2 , buildPythonPackage
3 , fetchurl
4 , isPyPy
5 , isPy3k
6 }:
8 buildPythonPackage rec {
9   version = "0.4.10";
10   pname = "mmpython";
12   src = fetchurl {
13     url = "https://sourceforge.net/projects/mmpython/files/latest/download";
14     sha256 = "1b7qfad3shgakj37gcj1b9h78j1hxlz6wp9k7h76pb4sq4bfyihy";
15     name = "${pname}-${version}.tar.gz";
16   };
18   disabled = isPyPy || isPy3k;
20   meta = with lib; {
21     description = "Media Meta Data retrieval framework";
22     homepage = "https://sourceforge.net/projects/mmpython/";
23     license = licenses.gpl2;
24   };