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

Commits on Sep 20, 2020

  1. pythonPackages.glom: fix tests

    (cherry picked from commit 05f9944)
    austinbutler authored and Jon committed Sep 20, 2020

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    1db586c View commit details
Showing with 2 additions and 3 deletions.
  1. +2 −3 pkgs/development/python-modules/glom/default.nix
5 changes: 2 additions & 3 deletions pkgs/development/python-modules/glom/default.nix
Original file line number Diff line number Diff line change
@@ -21,9 +21,8 @@ buildPythonPackage rec {
propagatedBuildInputs = [ boltons attrs face ];

checkInputs = [ pytest pyyaml ];
checkPhase = "pytest glom/test";

doCheck = !isPy37; # https://github.com/mahmoud/glom/issues/72
# test_cli.py checks the output of running "glom"
checkPhase = "PATH=$out/bin:$PATH pytest glom/test";

meta = with stdenv.lib; {
homepage = "https://github.com/mahmoud/glom";