nixpkgs/pkgs/development/python-modules/python-fx/default.nix
Robert Schütz 1a04744f74 treewide: remove superfluous disabled
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:

    pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
    for f in $(find -name '*.nix'); do
        grep -q "$pattern" "$f" || continue
        sed -i "/$pattern/d" "$f"
        if [ $(grep -c pythonOlder "$f") == 1 ]; then
            sed -i '/^\s*pythonOlder,\s*$/d' "$f"
        fi
        nixfmt "$f"
    done
2026-01-11 09:34:20 -08:00

100 lines
2.1 KiB
Nix

{
lib,
stdenv,
antlr4-python3-runtime,
asciimatics,
buildPythonPackage,
click,
dacite,
decorator,
fetchFromGitHub,
first,
jsonpath-ng,
loguru,
overrides,
pillow,
ply,
pyfiglet,
pyperclip,
pytestCheckHook,
antlr4,
pyyaml,
setuptools,
urwid,
parameterized,
wcwidth,
yamale,
}:
buildPythonPackage rec {
pname = "python-fx";
version = "0.3.2";
pyproject = true;
src = fetchFromGitHub {
owner = "cielong";
repo = "pyfx";
tag = "v${version}";
hash = "sha256-Q5ihWnoa7nf4EkrY4SgrwjaNvTva4RdW9GRbnbsPXPc=";
};
postPatch = ''
rm src/pyfx/model/common/jsonpath/*.py # upstream checks in generated files, remove to ensure they were regenerated
antlr -Dlanguage=Python3 -visitor src/pyfx/model/common/jsonpath/*.g4
rm src/pyfx/model/common/jsonpath/*.{g4,interp,tokens} # no need to install
# https://github.com/cielong/pyfx/pull/148
substituteInPlace src/pyfx/view/common/frame.py \
--replace-fail "self.__super.__init__()" "super().__init__()"
'';
pythonRelaxDeps = true;
build-system = [ setuptools ];
nativeBuildInputs = [ antlr4 ];
dependencies = [
antlr4-python3-runtime
asciimatics
click
dacite
decorator
first
jsonpath-ng
loguru
overrides
pillow
ply
pyfiglet
pyperclip
pyyaml
urwid
wcwidth
yamale
];
nativeCheckInputs = [
pytestCheckHook
parameterized
];
# FAILED tests/test_event_loops.py::TwistedEventLoopTest::test_run - AssertionError: 'callback called with future outcome: True' not found in ['...
doCheck = !stdenv.hostPlatform.isDarwin;
pythonImportsCheck = [ "pyfx" ];
disabledTests = [
# TypeError: CliRunner.__init__() got an unexpected keyword argument 'mix_stderr'
"test_start"
];
meta = {
description = "Module to view JSON in a TUI";
homepage = "https://github.com/cielong/pyfx";
changelog = "https://github.com/cielong/pyfx/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "pyfx";
};
}