summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexandre Esteves <alexandre.fmp.esteves@gmail.com>2018-04-22 19:57:23 +0100
committerAlexandre Esteves <alexandre.fmp.esteves@gmail.com>2018-04-24 13:34:49 +0100
commitc9b3a2452f7e216260b36794e48a43a052c813d4 (patch)
tree1a58b33415fa3b4c9eec41df983366d2eb47359b
parent14a119e1986cb6d60aef754561f9bbb36729fa43 (diff)
downloadnixpkgs-c9b3a2452f7e216260b36794e48a43a052c813d4.tar
nixpkgs-c9b3a2452f7e216260b36794e48a43a052c813d4.tar.gz
nixpkgs-c9b3a2452f7e216260b36794e48a43a052c813d4.tar.bz2
nixpkgs-c9b3a2452f7e216260b36794e48a43a052c813d4.tar.lz
nixpkgs-c9b3a2452f7e216260b36794e48a43a052c813d4.tar.xz
nixpkgs-c9b3a2452f7e216260b36794e48a43a052c813d4.tar.zst
nixpkgs-c9b3a2452f7e216260b36794e48a43a052c813d4.zip
coursera-dl: init at 0.10.0
-rw-r--r--maintainers/maintainer-list.nix5
-rw-r--r--pkgs/applications/misc/coursera-dl/default.nix41
-rw-r--r--pkgs/top-level/all-packages.nix2
3 files changed, 48 insertions, 0 deletions
diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index e6a89f93acc..40f8342f3ed 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -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";
diff --git a/pkgs/applications/misc/coursera-dl/default.nix b/pkgs/applications/misc/coursera-dl/default.nix
new file mode 100644
index 00000000000..a7a2dac26c6
--- /dev/null
+++ b/pkgs/applications/misc/coursera-dl/default.nix
@@ -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;
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index b575c9c4a97..ea37582d74c 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -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 { };