Merge pull request #9053 from odi/master

new python lib pafy init version 0.3.74
This commit is contained in:
Tobias Geerinckx-Rice 2015-07-31 01:55:43 +02:00
commit a010a30889
2 changed files with 21 additions and 0 deletions

View file

@ -177,6 +177,7 @@
nslqqq = "Nikita Mikhailov <nslqqq@gmail.com>";
obadz = "obadz <dav-nixos@odav.org>";
ocharles = "Oliver Charles <ollie@ocharles.org.uk>";
odi = "Oliver Dunkl <oliver.dunkl@gmail.com>";
offline = "Jaka Hudoklin <jakahudoklin@gmail.com>";
olcai = "Erik Timan <dev@timan.info>";
orbitz = "Malcolm Matalka <mmatalka@gmail.com>";

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