evcc: 0.131.8 -> 0.131.10 (#364658)
[NixPkgs.git] / pkgs / development / python-modules / mmpython / default.nix
blob6a980c242e8fa47a8907f8fc9f3126f36c0fb016
2   lib,
3   buildPythonPackage,
4   fetchurl,
5   isPyPy,
6   isPy3k,
7 }:
9 buildPythonPackage rec {
10   version = "0.4.10";
11   format = "setuptools";
12   pname = "mmpython";
14   src = fetchurl {
15     url = "https://sourceforge.net/projects/mmpython/files/latest/download";
16     sha256 = "1b7qfad3shgakj37gcj1b9h78j1hxlz6wp9k7h76pb4sq4bfyihy";
17     name = "${pname}-${version}.tar.gz";
18   };
20   disabled = isPyPy || isPy3k;
22   meta = with lib; {
23     description = "Media Meta Data retrieval framework";
24     homepage = "https://sourceforge.net/projects/mmpython/";
25     license = licenses.gpl2;
26   };