coursera-dl: init at 0.10.0

This commit is contained in:
Alexandre Esteves 2018-04-22 19:57:23 +01:00
parent 14a119e198
commit c9b3a2452f
No known key found for this signature in database
GPG key ID: B8DBCB930DF09E72
3 changed files with 48 additions and 0 deletions

View file

@ -310,6 +310,11 @@
email = "alex@farfromthere.net";
github = "AJChapman";
};
alexfmpe = {
email = "alexandre.fmp.esteves@gmail.com";
github = "alexfmpe";
name = "Alexandre Esteves";
};
alexvorobiev = {
email = "alexander.vorobiev@gmail.com";
github = "alexvorobiev";

View file

@ -0,0 +1,41 @@
{ stdenv, fetchFromGitHub, glibcLocales, pandoc, python3 }:
let
pythonPackages = python3.pkgs;
in pythonPackages.buildPythonApplication rec {
name = "coursera-dl-${version}";
version = "0.10.0";
src = fetchFromGitHub {
owner = "coursera-dl";
repo = "coursera-dl";
rev = version;
sha256 = "0m3f6ly8c3mkb8yy2y398afswqgy17rz159s1054wzxpb4f85zlb";
};
nativeBuildInputs = with pythonPackages; [ pandoc ];
buildInputs = with pythonPackages; [ glibcLocales ];
propagatedBuildInputs = with pythonPackages; [ beautifulsoup4 ConfigArgParse keyring pyasn1 requests six urllib3 ];
checkInputs = with pythonPackages; [ pytest mock ];
preConfigure = ''
export LC_ALL=en_US.utf-8
'';
checkPhase = ''
# requires dbus service
py.test -k 'not test_get_credentials_with_keyring' .
'';
meta = with stdenv.lib; {
description = "CLI for downloading Coursera.org videos and naming them";
homepage = https://github.com/coursera-dl/coursera-dl;
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ alexfmpe ];
platforms = platforms.darwin ++ platforms.linux;
};
}

View file

@ -15121,6 +15121,8 @@ with pkgs;
convchain = callPackage ../tools/graphics/convchain {};
coursera-dl = callPackage ../applications/misc/coursera-dl {};
coyim = callPackage ../applications/networking/instant-messengers/coyim {};
cpp_ethereum = callPackage ../applications/misc/cpp-ethereum { };