python: jsonschema: 2.6.0 -> 3.1.1

This commit is contained in:
Frederik Rietdijk 2019-10-24 08:47:36 +02:00
parent 4a14c73e02
commit 7f3cdd201e

View file

@ -1,28 +1,36 @@
{ stdenv, buildPythonPackage, fetchPypi, python
, nose, mock, vcversioner, functools32 }:
{ lib, buildPythonPackage, fetchPypi, python, isPy27
, attrs
, functools32
, importlib-metadata
, mock
, nose
, pyperf
, pyrsistent
, setuptools_scm
, twisted
, vcversioner
}:
buildPythonPackage rec {
pname = "jsonschema";
version = "2.6.0";
version = "3.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "00kf3zmpp9ya4sydffpifn0j0mzm342a2vzh82p6r0vh10cg7xbg";
sha256 = "2fa0684276b6333ff3c0b1b27081f4b2305f0a36cf702a23db50edb141893c3f";
};
checkInputs = [ nose mock vcversioner ];
propagatedBuildInputs = [ functools32 ];
postPatch = ''
substituteInPlace jsonschema/tests/test_jsonschema_test_suite.py \
--replace "python" "${python.pythonForBuild.interpreter}"
'';
nativeBuildInputs = [ setuptools_scm ];
propagatedBuildInputs = [ attrs importlib-metadata functools32 pyrsistent ];
checkInputs = [ nose mock pyperf twisted vcversioner ];
# zope namespace collides on py27
doCheck = !isPy27;
checkPhase = ''
nosetests
'';
meta = with stdenv.lib; {
meta = with lib; {
homepage = https://github.com/Julian/jsonschema;
description = "An implementation of JSON Schema validation for Python";
license = licenses.mit;