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

Commits on Oct 24, 2019

  1. Copy the full SHA
    9804d89 View commit details
Showing with 7 additions and 2 deletions.
  1. +7 −2 pkgs/development/python-modules/jsonschema/default.nix
9 changes: 7 additions & 2 deletions pkgs/development/python-modules/jsonschema/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{ stdenv, buildPythonPackage, fetchPypi, python
, nose, mock, vcversioner, functools32 }:
, nose, mock, vcversioner, functools32
, setuptools_scm
, pyrsistent
}:

buildPythonPackage rec {
pname = "jsonschema";
@@ -10,8 +13,10 @@ buildPythonPackage rec {
sha256 = "2fa0684276b6333ff3c0b1b27081f4b2305f0a36cf702a23db50edb141893c3f";
};

nativeBuildInputs = [ setuptools_scm ];

checkInputs = [ nose mock vcversioner ];
propagatedBuildInputs = [ functools32 ];
propagatedBuildInputs = [ functools32 pyrsistent ];

postPatch = ''
substituteInPlace jsonschema/tests/test_jsonschema_test_suite.py \