nixpkgs/pkgs/applications/misc/coursera-dl/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

79 lines
1.8 KiB
Nix
Raw Normal View History

{ lib
, fetchFromGitHub
, fetchpatch
, glibcLocales
, pandoc
, python3
}:
2018-04-22 18:57:23 +00:00
python3.pkgs.buildPythonApplication rec {
2018-07-07 14:31:43 +00:00
pname = "coursera-dl";
2019-12-23 06:18:40 +00:00
version = "0.11.5";
format = "setuptools";
2018-04-22 18:57:23 +00:00
src = fetchFromGitHub {
owner = "coursera-dl";
repo = "coursera-dl";
rev = "refs/tags/${version}";
2019-12-23 06:18:40 +00:00
sha256 = "0akgwzrsx094jj30n4bd2ilwgva4qxx38v3bgm69iqfxi8c2bqbk";
2018-04-22 18:57:23 +00:00
};
patches = [
(fetchpatch {
url = "https://github.com/coursera-dl/coursera-dl/commit/c8796e567698be166cb15f54e095140c1a9b567e.patch";
sha256 = "sha256:07ca6zdyw3ypv7yzfv2kzmjvv86h0rwzllcg0zky27qppqz917bv";
})
(fetchpatch {
url = "https://github.com/coursera-dl/coursera-dl/commit/6c221706ba828285ca7a30a08708e63e3891b36f.patch";
sha256 = "sha256-/AKFvBPInSq/lsz+G0jVSl/ukVgCnt66oePAb+66AjI=";
})
];
2018-04-22 18:57:23 +00:00
2019-01-17 08:47:09 +00:00
postPatch = ''
substituteInPlace requirements.txt \
--replace '==' '>='
'';
2018-04-22 18:57:23 +00:00
preConfigure = ''
export LC_ALL=en_US.utf-8
'';
nativeBuildInputs = with python3.pkgs; [
pandoc
];
2018-04-22 18:57:23 +00:00
buildInputs = with python3.pkgs; [
glibcLocales
];
propagatedBuildInputs = with python3.pkgs; [
attrs
beautifulsoup4
configargparse
keyring
pyasn1
requests
six
urllib3
];
nativeCheckInputs = with python3.pkgs; [
pytestCheckHook
mock
];
disabledTests = [
"test_get_credentials_with_keyring"
"test_quiz_exam_to_markup_converter"
2021-08-01 14:54:54 +00:00
];
meta = with lib; {
2018-04-22 18:57:23 +00:00
description = "CLI for downloading Coursera.org videos and naming them";
homepage = "https://github.com/coursera-dl/coursera-dl";
changelog = "https://github.com/coursera-dl/coursera-dl/blob/0.11.5/CHANGELOG.md";
2018-04-22 18:57:23 +00:00
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ alexfmpe ];
platforms = platforms.darwin ++ platforms.linux;
};
}