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

Commits on Nov 4, 2020

  1. mu-repo: 1.8.0 → 1.8.1

    sikmir committed Nov 4, 2020
    Copy the full SHA
    43e8cb4 View commit details

Commits on Nov 24, 2020

  1. Merge pull request #102748 from sikmir/mu-repo

    mu-repo: 1.8.0 → 1.8.1
    SuperSandro2000 authored Nov 24, 2020
    Copy the full SHA
    ea91f5f View commit details
Showing with 7 additions and 8 deletions.
  1. +7 −8 pkgs/applications/misc/mu-repo/default.nix
15 changes: 7 additions & 8 deletions pkgs/applications/misc/mu-repo/default.nix
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
{ lib, fetchFromGitHub, buildPythonApplication, pytest, git }:
{ lib, fetchFromGitHub, buildPythonApplication, pytestCheckHook, git }:

buildPythonApplication rec {
pname = "mu-repo";
version = "1.8.0";
version = "1.8.1";

src = fetchFromGitHub {
owner = "fabioz";
repo = pname;
rev = with lib;
"mu_repo_" + concatStringsSep "_" (splitVersion version);
sha256 = "1dxfggzbhiips0ww2s93yba9842ycp0i3x2i8vvcx0vgicv3rv6f";
rev = "mu_repo_${lib.replaceStrings [ "." ] [ "_" ] version}";
sha256 = "0mmjdkvmdlsndi2q56ybxyz2988ppxsbbr1g54nzzkkvab2bc2na";
};

checkInputs = [ pytest git ];
# disable test which assumes it's a git repo
checkPhase = "py.test mu_repo --ignore=mu_repo/tests/test_checkout.py";
propagatedBuildInputs = [ git ];

checkInputs = [ pytestCheckHook git ];

meta = with lib; {
description = "Tool to help in dealing with multiple git repositories";