mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-05 04:23:47 +00:00
47 lines
909 B
Nix
47 lines
909 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "fastjsonschema";
|
|
version = "2.15.3";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "horejsek";
|
|
repo = "python-fastjsonschema";
|
|
rev = "v${version}";
|
|
fetchSubmodules = true;
|
|
sha256 = "sha256-WKnjSlKtMGpWKPbPr7hpS6Dg0+9i/nWVYmar0N3Q9Pc=";
|
|
};
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
dontUseSetuptoolsCheck = true;
|
|
|
|
disabledTests = [
|
|
"benchmark"
|
|
# these tests require network access
|
|
"remote ref"
|
|
"definitions"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"fastjsonschema"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "JSON schema validator for Python";
|
|
homepage = "https://horejsek.github.io/python-fastjsonschema/";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ drewrisinger ];
|
|
};
|
|
}
|