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: cfeda58f9598
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d9da434505c1
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Mar 15, 2019

  1. mycli: patch tests

    Similar to f3c66bb. Due to invalid
    datatypes a lot of the tests broke.
    
    The patch is based on an upstream PR[1], but had to be modified in order
    to apply on v1.19.0.
    
    See also https://hydra.nixos.org/build/90119741
    Addresses #56826
    
    [1] dbcli/mycli#711
    
    (cherry picked from commit 69c21be)
    Ma27 authored and xeji committed Mar 15, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    codetheweb Max Isom
    Copy the full SHA
    d9da434 View commit details
Showing with 448 additions and 0 deletions.
  1. +2 −0 pkgs/tools/admin/mycli/default.nix
  2. +446 −0 pkgs/tools/admin/mycli/fix-tests.patch
2 changes: 2 additions & 0 deletions pkgs/tools/admin/mycli/default.nix
Original file line number Diff line number Diff line change
@@ -14,6 +14,8 @@ buildPythonApplication rec {
sha256 = "0x5vzl4vvirqy03fnjwkamhzrqkknlajamwz1rmbnqh4bfmijh9m";
};

patches = [ ./fix-tests.patch ];

propagatedBuildInputs = [
pymysql configobj sqlparse prompt_toolkit pygments click pycrypto cli-helpers
];
Loading