summary refs log tree commit diff
path: root/pkgs/applications/misc/coursera-dl
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 /pkgs/applications/misc/coursera-dl
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
Diffstat (limited to 'pkgs/applications/misc/coursera-dl')
-rw-r--r--pkgs/applications/misc/coursera-dl/default.nix41
1 files changed, 41 insertions, 0 deletions
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;
+  };
+}