pythonPackages.jpylyzer: 1.18.0 -> 2.0.0

enable tests
This commit is contained in:
Robert Scott 2020-07-28 19:06:59 +01:00
parent de2c3e08c0
commit 6e5d56ddbd

View file

@ -2,24 +2,24 @@
, fetchFromGitHub , fetchFromGitHub
, buildPythonPackage , buildPythonPackage
, six , six
, pytestCheckHook
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "jpylyzer"; pname = "jpylyzer";
version = "1.18.0"; version = "2.0.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "openpreserve"; owner = "openpreserve";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "0vhrq15l6jd5fm6vj7mczjzjpl2ph1dk8jp89dw4vlccky8660ll"; sha256 = "01wfbb1bgby9b7m6q7483kvpyc1qhj80dg8d5a6smcxvmy8y6x5n";
}; };
propagatedBuildInputs = [ six ]; propagatedBuildInputs = [ six ];
# there don't appear to be any in-tree tests as such, but the builder's automatic checkInputs = [ pytestCheckHook ];
# runner seems to be upset by the project layout pythonImportsCheck = [ "jpylyzer" ];
doCheck = false;
meta = with lib; { meta = with lib; {
description = "JP2 (JPEG 2000 Part 1) image validator and properties extractor"; description = "JP2 (JPEG 2000 Part 1) image validator and properties extractor";