summary refs log tree commit diff
path: root/pkgs/development/python-modules/jpylyzer/default.nix
blob: c5c9cdf15056d87f6c9f4ee968634e1ca185d568 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib, stdenv
, fetchFromGitHub
, buildPythonPackage
, six
}:

buildPythonPackage rec {
  pname = "jpylyzer";
  version = "1.18.0";

  src = fetchFromGitHub {
    owner = "openpreserve";
    repo = pname;
    rev = version;
    sha256 = "0vhrq15l6jd5fm6vj7mczjzjpl2ph1dk8jp89dw4vlccky8660ll";
  };

  propagatedBuildInputs = [ six ];

  # there don't appear to be any in-tree tests as such, but the builder's automatic
  # runner seems to be upset by the project layout
  doCheck = false;

  meta = with lib; {
    description = "JP2 (JPEG 2000 Part 1) image validator and properties extractor";
    homepage = "https://jpylyzer.openpreservation.org/";
    license = licenses.lgpl3;
    maintainers = with maintainers; [ ris ];
  };
}