python-packages: pafy init version 0.3.74

This commit is contained in:
Oliver Dunkl 2015-07-30 11:39:28 +02:00
parent ad686d3762
commit 8b71698c07

View file

@ -16790,4 +16790,24 @@ let
maintainers = with maintainers; [ kamilchm ];
};
};
pafy = buildPythonPackage rec {
name = "pafy-${version}";
version = "0.3.74";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/p/pafy/${name}.tar.gz";
md5 = "fbf0e7f85914eaf35f87837232eec09c";
};
propagatedBuildInputs = with self; [ youtube-dl ];
meta = with stdenv.lib; {
description = "A library to download YouTube content and retrieve metadata";
homepage = http://np1.github.io/pafy/;
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ odi ];
};
};
}; in pythonPackages