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

47 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, fetchFromGitHub, glibcLocales, pandoc, python3 }:
2018-04-22 18:57:23 +00:00
let
pythonPackages = python3.pkgs;
in pythonPackages.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";
2018-04-22 18:57:23 +00:00
src = fetchFromGitHub {
owner = "coursera-dl";
repo = "coursera-dl";
rev = version;
2019-12-23 06:18:40 +00:00
sha256 = "0akgwzrsx094jj30n4bd2ilwgva4qxx38v3bgm69iqfxi8c2bqbk";
2018-04-22 18:57:23 +00:00
};
nativeBuildInputs = with pythonPackages; [ pandoc ];
buildInputs = with pythonPackages; [ glibcLocales ];
2018-07-07 14:31:43 +00:00
propagatedBuildInputs = with pythonPackages; [ attrs beautifulsoup4 ConfigArgParse keyring pyasn1 requests six urllib3 ];
2018-04-22 18:57:23 +00:00
checkInputs = with pythonPackages; [ pytest mock ];
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
'';
checkPhase = ''
# requires dbus service
py.test -k 'not test_get_credentials_with_keyring' .
'';
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";
2018-04-22 18:57:23 +00:00
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ alexfmpe ];
platforms = platforms.darwin ++ platforms.linux;
};
}