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

Commits on Mar 21, 2018

  1. mir-qualia: 1.0.0 -> 2.0.0

    Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:
    
    - built on NixOS
    - ran `/nix/store/k04xnvxmkwbyjis7x2fwfdhc8s1cdfyw-mir.qualia-2.0.0/bin/.qualia-wrapped -h` got 0 exit code
    - ran `/nix/store/k04xnvxmkwbyjis7x2fwfdhc8s1cdfyw-mir.qualia-2.0.0/bin/.qualia-wrapped --help` got 0 exit code
    - ran `/nix/store/k04xnvxmkwbyjis7x2fwfdhc8s1cdfyw-mir.qualia-2.0.0/bin/qualia -h` got 0 exit code
    - ran `/nix/store/k04xnvxmkwbyjis7x2fwfdhc8s1cdfyw-mir.qualia-2.0.0/bin/qualia --help` got 0 exit code
    - found 2.0.0 with grep in /nix/store/k04xnvxmkwbyjis7x2fwfdhc8s1cdfyw-mir.qualia-2.0.0
    - directory tree listing: https://gist.github.com/18601b1231672c52d2a59f11fff236f8
    ryantm committed Mar 21, 2018
    Copy the full SHA
    35ad8dd View commit details
  2. Merge pull request #37513 from ryantm/auto-update/mir.qualia

    mir-qualia: 1.0.0 -> 2.0.0
    srhb authored Mar 21, 2018
    Copy the full SHA
    d32ce05 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/text/mir-qualia/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/text/mir-qualia/default.nix
Original file line number Diff line number Diff line change
@@ -2,14 +2,14 @@

pythonPackages.buildPythonApplication rec {
name = "mir.qualia-${version}";
version = "1.0.0";
doCheck = false; # 1.0.0-released pytests are broken
version = "2.0.0";
doCheck = false; # 2.0.0-released pytests are broken

buildInputs = with pythonPackages; [ pytest ];

src = fetchurl {
url = "mirror://pypi/m/mir.qualia/mir.qualia-${version}.tar.gz";
sha256 = "1g0nwncwk4nq7b7zszqi1q4d2bdga1q50g9nkxigdaq647wqdf7x";
sha256 = "1ybq6jb5clh9hw0sp3idp4hjv2gkm9yiaph48gcc208affflc8m9";
};

meta = {