tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
coursera-dl: fix tests
Alexandre Esteves
4 years ago
0e43bf2e
3b4f4560
+8
-1
1 changed file
expand all
collapse all
unified
split
pkgs
applications
misc
coursera-dl
default.nix
+8
-1
pkgs/applications/misc/coursera-dl/default.nix
···
1
1
-
{ lib, fetchFromGitHub, glibcLocales, pandoc, python3 }:
1
1
+
{ lib, fetchFromGitHub, fetchpatch, glibcLocales, pandoc, python3 }:
2
2
3
3
let
4
4
pythonPackages = python3.pkgs;
···
35
35
# requires dbus service
36
36
py.test -k 'not test_get_credentials_with_keyring' .
37
37
'';
38
38
+
39
39
+
patches = [
40
40
+
(fetchpatch {
41
41
+
url = "https://github.com/coursera-dl/coursera-dl/pull/789.patch";
42
42
+
sha256 = "sha256:07ca6zdyw3ypv7yzfv2kzmjvv86h0rwzllcg0zky27qppqz917bv";
43
43
+
})
44
44
+
];
38
45
39
46
meta = with lib; {
40
47
description = "CLI for downloading Coursera.org videos and naming them";