nixpkgs/pkgs/development/python-modules/json-api-doc/default.nix
Fabian Affolter 84866ae3b1 python312Packages.json-api-doc: init at 0.15.0
JSON API parser returning a simple Python dictionary

https://github.com/julien-duponchelle/json-api-doc
2025-01-02 22:17:50 +01:00

42 lines
975 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "json-api-doc";
version = "0.15.0";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "julien-duponchelle";
repo = "json-api-doc";
tag = "v${version}";
hash = "sha256-r6XduJ2GIr2hGen6hoNIdE3yqPzHJ9xAFOSbMgErsNA=";
};
postPatch = ''
substituteInPlace setup.py \
--replace-fail "'pytest-runner'," ""
'';
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "json_api_doc" ];
meta = {
description = "JSON API parser returning a simple Python dictionary";
homepage = "https://github.com/julien-duponchelle/json-api-doc";
changelog = "https://github.com/julien-duponchelle/json-api-doc/releases/tag/v${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}