depot/third_party/nixpkgs/pkgs/development/python-modules/jsonref/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

43 lines
911 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pdm-backend,
pdm-pep517,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "jsonref";
version = "1.1.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "gazpachoking";
repo = "jsonref";
rev = "refs/tags/v${version}";
hash = "sha256-tOhabmqCkktJUZjCrzjOjUGgA/X6EVz0KqehyLtigfc=";
};
nativeBuildInputs = [
pdm-backend
pdm-pep517
];
nativeCheckInputs = [ pytestCheckHook ];
pytestFlagsArray = [ "tests.py" ];
pythonImportsCheck = [ "jsonref" ];
meta = with lib; {
description = "Implementation of JSON Reference for Python";
homepage = "https://github.com/gazpachoking/jsonref";
changelog = "https://github.com/gazpachoking/jsonref/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}