Skip to content

Commit

Permalink
pythonPackages.jsonschema: 2.6.0 -> 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
costrouc authored and FRidh committed Jul 20, 2019
1 parent f105538 commit ba4384d
Showing 1 changed file with 34 additions and 14 deletions.
48 changes: 34 additions & 14 deletions pkgs/development/python-modules/jsonschema/default.nix
@@ -1,31 +1,51 @@
{ stdenv, buildPythonPackage, fetchPypi, python
, nose, mock, vcversioner, functools32 }:
{ lib
, buildPythonPackage
, fetchPypi
, attrs
, pyrsistent
, setuptools
, six
, functools32
, setuptools_scm
, perf
, twisted
, python
}:

buildPythonPackage rec {
pname = "jsonschema";
version = "2.6.0";
version = "3.0.1";

src = fetchPypi {
inherit pname version;
sha256 = "00kf3zmpp9ya4sydffpifn0j0mzm342a2vzh82p6r0vh10cg7xbg";
sha256 = "03g20i1xfg4qdlk4475pl4pp7y0h37g1fbgs5qhy678q9xb822hc";
};

checkInputs = [ nose mock vcversioner ];
propagatedBuildInputs = [ functools32 ];
nativeBuildInputs = [
setuptools_scm
];

postPatch = ''
substituteInPlace jsonschema/tests/test_jsonschema_test_suite.py \
--replace "python" "${python.pythonForBuild.interpreter}"
'';
propagatedBuildInputs = [
attrs
pyrsistent
setuptools
six
functools32
];

checkInputs = [
twisted
perf
];

checkPhase = ''
nosetests
${python.interpreter} setup.py test --test-suite=jsonschema.tests
'';

meta = with stdenv.lib; {
homepage = https://github.com/Julian/jsonschema;
meta = with lib; {
description = "An implementation of JSON Schema validation for Python";
homepage = https://github.com/Julian/jsonschema;
license = licenses.mit;
maintainers = with maintainers; [ domenkozar ];
maintainers = with maintainers; [ costrouc domenkozar ];
};
}

0 comments on commit ba4384d

Please sign in to comment.