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

Commits on Aug 3, 2019

  1. pythonPackages.nbval: 0.9.1 -> 0.9.2

    Jonathan Ringer authored and FRidh committed Aug 3, 2019
    Copy the full SHA
    6e880c2 View commit details
Showing with 4 additions and 3 deletions.
  1. +4 −3 pkgs/development/python-modules/nbval/default.nix
7 changes: 4 additions & 3 deletions pkgs/development/python-modules/nbval/default.nix
Original file line number Diff line number Diff line change
@@ -15,19 +15,20 @@

buildPythonPackage rec {
pname = "nbval";
version = "0.9.1";
version = "0.9.2";

src = fetchPypi {
inherit pname version;
sha256 = "3f18b87af4e94ccd073263dd58cd3eebabe9f5e4d6ab535b39d3af64811c7eda";
sha256 = "0g8xl4158ngyhiynrkk72jpawnk4isznbijz0w085g269fps0vp2";
};

LC_ALL = "en_US.UTF-8";

buildInputs = [ glibcLocales ];
checkInputs = [ matplotlib sympy pytestcov ];
checkInputs = [ matplotlib sympy pytestcov pytest ];
propagatedBuildInputs = [ coverage ipykernel jupyter_client nbformat pytest six ];

# ignore impure tests
checkPhase = ''
pytest tests --current-env --ignore tests/test_timeouts.py
'';