
This reverts commit 65a333600d5c88a98d674f637d092807cfc12253. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e4587d75882aebc21a04bee960418f8ce9
56 lines
1.3 KiB
Nix
56 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "fastjsonschema";
|
|
version = "2.21.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "horejsek";
|
|
repo = "python-fastjsonschema";
|
|
rev = "v${version}";
|
|
fetchSubmodules = true;
|
|
hash = "sha256-H/jmvm5U4RB9KuD5EgCedbc499Fl8L2S9Y5SXy51JP0=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
disabledTests =
|
|
[
|
|
"benchmark"
|
|
# these tests require network access
|
|
"remote ref"
|
|
"definitions"
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
"test_compile_to_code_custom_format" # cannot import temporary module created during test
|
|
];
|
|
|
|
pytestFlagsArray = [
|
|
# fastjsonschema.exceptions.JsonSchemaDefinitionException: Unknown format uuid/duration
|
|
"--deselect=tests/json_schema/test_draft2019.py::test"
|
|
];
|
|
|
|
pythonImportsCheck = [ "fastjsonschema" ];
|
|
|
|
meta = with lib; {
|
|
description = "JSON schema validator for Python";
|
|
downloadPage = "https://github.com/horejsek/python-fastjsonschema";
|
|
homepage = "https://horejsek.github.io/python-fastjsonschema/";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ drewrisinger ];
|
|
};
|
|
}
|