pythonPackages.jsonschema: 2.6.0 -> 3.0.1

This commit is contained in:
Chris Ostrouchov 2019-07-16 16:30:08 -04:00 committed by Frederik Rietdijk
parent f10553883d
commit ba4384d865

View file

@ -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 ];
};
}