From ba4384d8650de330fd218f08e8679e1d486bd1dc Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Tue, 16 Jul 2019 16:30:08 -0400 Subject: [PATCH] pythonPackages.jsonschema: 2.6.0 -> 3.0.1 --- .../python-modules/jsonschema/default.nix | 48 +++++++++++++------ 1 file changed, 34 insertions(+), 14 deletions(-) diff --git a/pkgs/development/python-modules/jsonschema/default.nix b/pkgs/development/python-modules/jsonschema/default.nix index db6be9f9918..dfff4ac4265 100644 --- a/pkgs/development/python-modules/jsonschema/default.nix +++ b/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 ]; }; }