Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e691c8e97ca0
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 52d4d737577d
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jul 7, 2018

  1. Copy the full SHA
    52d4d73 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/applications/misc/coursera-dl/default.nix
8 changes: 4 additions & 4 deletions pkgs/applications/misc/coursera-dl/default.nix
Original file line number Diff line number Diff line change
@@ -4,21 +4,21 @@ let
pythonPackages = python3.pkgs;

in pythonPackages.buildPythonApplication rec {
name = "coursera-dl-${version}";
version = "0.10.0";
pname = "coursera-dl";
version = "0.11.4";

src = fetchFromGitHub {
owner = "coursera-dl";
repo = "coursera-dl";
rev = version;
sha256 = "0m3f6ly8c3mkb8yy2y398afswqgy17rz159s1054wzxpb4f85zlb";
sha256 = "0dn7a6s98dwba62r0dyabq8pryzga4b2wpx88i9bmp7ja1b1f92f";
};

nativeBuildInputs = with pythonPackages; [ pandoc ];

buildInputs = with pythonPackages; [ glibcLocales ];

propagatedBuildInputs = with pythonPackages; [ beautifulsoup4 ConfigArgParse keyring pyasn1 requests six urllib3 ];
propagatedBuildInputs = with pythonPackages; [ attrs beautifulsoup4 ConfigArgParse keyring pyasn1 requests six urllib3 ];

checkInputs = with pythonPackages; [ pytest mock ];