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.

54 lines
1.4 KiB
Nix
Raw Normal View History

2021-08-01 16:54:54 +02:00
{ lib, fetchFromGitHub, fetchpatch, glibcLocales, pandoc, python3 }:
2018-04-22 20:57:23 +02:00
let
pythonPackages = python3.pkgs;
in pythonPackages.buildPythonApplication rec {
2018-07-07 16:31:43 +02:00
pname = "coursera-dl";
2019-12-23 07:18:40 +01:00
version = "0.11.5";
2018-04-22 20:57:23 +02:00
src = fetchFromGitHub {
owner = "coursera-dl";
repo = "coursera-dl";
rev = version;
2019-12-23 07:18:40 +01:00
sha256 = "0akgwzrsx094jj30n4bd2ilwgva4qxx38v3bgm69iqfxi8c2bqbk";
2018-04-22 20:57:23 +02:00
};
nativeBuildInputs = with pythonPackages; [ pandoc ];
buildInputs = with pythonPackages; [ glibcLocales ];
propagatedBuildInputs = with pythonPackages; [ attrs beautifulsoup4 configargparse keyring pyasn1 requests six urllib3 ];
2018-04-22 20:57:23 +02:00
checkInputs = with pythonPackages; [ pytest mock ];
2019-01-17 09:47:09 +01:00
postPatch = ''
substituteInPlace requirements.txt \
--replace '==' '>='
'';
2018-04-22 20:57:23 +02:00
preConfigure = ''
export LC_ALL=en_US.utf-8
'';
checkPhase = ''
# requires dbus service
py.test -k 'not test_get_credentials_with_keyring' .
'';
2021-08-01 16:54:54 +02:00
patches = [
(fetchpatch {
url = "https://github.com/coursera-dl/coursera-dl/pull/789.patch";
sha256 = "sha256:07ca6zdyw3ypv7yzfv2kzmjvv86h0rwzllcg0zky27qppqz917bv";
})
];
meta = with lib; {
2018-04-22 20:57:23 +02:00
description = "CLI for downloading Coursera.org videos and naming them";
homepage = "https://github.com/coursera-dl/coursera-dl";
2018-04-22 20:57:23 +02:00
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ alexfmpe ];
platforms = platforms.darwin ++ platforms.linux;
};
}