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: fdeba5ef3276
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 307d4712454e
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 13, 2020

  1. Copy the full SHA
    91b3ce2 View commit details

Commits on Nov 16, 2020

  1. Merge pull request #103655 from sveitser/update-nix-prefetch-github-4…

    ….0.2
    
    nix-prefetch-github: 4.0.1 -> 4.0.2
    Ma27 authored Nov 16, 2020
    Copy the full SHA
    307d471 View commit details
Showing with 3 additions and 4 deletions.
  1. +3 −4 pkgs/development/python-modules/nix-prefetch-github/default.nix
Original file line number Diff line number Diff line change
@@ -8,18 +8,17 @@
, jinja2
, git
, pytestCheckHook
, pytest-black
, pytestcov
, pytest-isort
}:

buildPythonPackage rec {
pname = "nix-prefetch-github";
version = "4.0.1";
version = "4.0.2";

src = fetchPypi {
inherit pname version;
sha256 = "asfRohjOgYxMV/wprKvxUD328GVJQkAYnuAkE09kKgs=";
sha256 = "ZdaWIkpJk8AvTZmA76VMTXeOUTrWLe+W3vh/e0zwWB4=";
};

propagatedBuildInputs = [
@@ -29,7 +28,7 @@ buildPythonPackage rec {
jinja2
];

checkInputs = [ pytestCheckHook pytest-black pytestcov pytest-isort git ];
checkInputs = [ pytestCheckHook pytestcov pytest-isort git ];
checkPhase = ''
pytest -m 'not network'
'';