From d7626595e8d5ed4aa46a4e68fbaeb6a53a105403 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sun, 13 Nov 2022 12:50:08 +0000 Subject: [PATCH] python3Packages.jpylyzer: 2.0.1 -> 2.1.0 --- .../python-modules/jpylyzer/default.nix | 33 ++++++++++++++++--- 1 file changed, 29 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/jpylyzer/default.nix b/pkgs/development/python-modules/jpylyzer/default.nix index 92c78895eb62..e161b3ffc502 100644 --- a/pkgs/development/python-modules/jpylyzer/default.nix +++ b/pkgs/development/python-modules/jpylyzer/default.nix @@ -1,26 +1,51 @@ { lib +, stdenv , fetchFromGitHub , buildPythonPackage , six +, lxml , pytestCheckHook }: -buildPythonPackage rec { +let + # unclear relationship between test-files version and jpylyzer version. + # upstream appears to just always test against the latest version, so + # probably worth updating this when package is bumped. + testFiles = fetchFromGitHub { + owner = "openpreserve"; + repo = "jpylyzer-test-files"; + rev = "146cb0029b5ea9d8ef22dc6683cec8afae1cc63a"; + sha256 = "sha256-uKUau7mYXqGs4dSnXGPnPsH9k81ZCK0aPj5F9HWBMZ8="; + }; + +in buildPythonPackage rec { pname = "jpylyzer"; - version = "2.0.1"; + version = "2.1.0"; src = fetchFromGitHub { owner = "openpreserve"; repo = pname; rev = version; - sha256 = "1cd9klq83g9p4nkg7x78axqid5vcsqzggp431hcfdiixa50yjxjg"; + sha256 = "sha256-LBVOwjWC/HEvGgoi8WxEdl33M4JrfdHEj1Dk7f1NAiA="; }; propagatedBuildInputs = [ six ]; - checkInputs = [ pytestCheckHook ]; + checkInputs = [ pytestCheckHook lxml ]; + + # don't depend on testFiles on darwin as it may not be extractable due to + # weird filenames + preCheck = lib.optionalString (!stdenv.isDarwin) '' + sed -i '/^testFilesDir = /ctestFilesDir = "${testFiles}"' tests/unit/test_testfiles.py + ''; + disabledTestPaths = lib.optionals stdenv.isDarwin [ + "tests/unit/test_testfiles.py" + ]; + pythonImportsCheck = [ "jpylyzer" ]; + disallowedReferences = [ testFiles ]; + meta = with lib; { description = "JP2 (JPEG 2000 Part 1) image validator and properties extractor"; homepage = "https://jpylyzer.openpreservation.org/";