From b54a28bd4d7c53fb99726d1950cdd74e6975fece Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 18 Aug 2023 12:37:45 +0200 Subject: [PATCH] python311Packages.jq: add changelog to meta - disable on unsupported Python releases --- .../development/python-modules/jq/default.nix | 33 ++++++++++++++----- 1 file changed, 25 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/jq/default.nix b/pkgs/development/python-modules/jq/default.nix index 22547c8070d1..335b6e92781d 100644 --- a/pkgs/development/python-modules/jq/default.nix +++ b/pkgs/development/python-modules/jq/default.nix @@ -1,13 +1,23 @@ -{ lib, buildPythonPackage, fetchFromGitHub, cython, jq, pytestCheckHook }: +{ lib +, buildPythonPackage +, cython +, fetchFromGitHub +, jq +, pytestCheckHook +, pythonOlder +}: buildPythonPackage rec { pname = "jq"; version = "1.4.1"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "mwilliamson"; repo = "jq.py"; - rev = version; + rev = "refs/tags/${version}"; hash = "sha256-prH3yUFh3swXGsxnoax09aYAXaiu8o2M21ZbOp9HDJY="; }; @@ -16,9 +26,13 @@ buildPythonPackage rec { ./jq-py-setup.patch ]; - nativeBuildInputs = [ cython ]; + nativeBuildInputs = [ + cython + ]; - buildInputs = [ jq ]; + buildInputs = [ + jq + ]; preBuild = '' cython jq.pyx @@ -28,12 +42,15 @@ buildPythonPackage rec { pytestCheckHook ]; - pythonImportsCheck = [ "jq" ]; + pythonImportsCheck = [ + "jq" + ]; - meta = { + meta = with lib; { description = "Python bindings for jq, the flexible JSON processor"; homepage = "https://github.com/mwilliamson/jq.py"; - license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ benley ]; + changelog = "https://github.com/mwilliamson/jq.py/blob/${version}/CHANGELOG.rst"; + license = licenses.bsd2; + maintainers = with maintainers; [ benley ]; }; }