2021-01-25 09:26:54 +01:00
|
|
|
{ lib
|
2020-04-03 00:53:34 +02:00
|
|
|
, python3
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
|
|
pname = "isolyzer";
|
2022-06-07 21:52:26 +02:00
|
|
|
version = "1.4.0";
|
2020-04-03 00:53:34 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "KBNLresearch";
|
|
|
|
repo = pname;
|
2022-06-07 21:52:26 +02:00
|
|
|
rev = "refs/tags/${version}";
|
|
|
|
sha256 = "sha256-NqkjnEwpaoyguG5GLscKS9UQGtF9N4jUL5JhrMtKCFE=";
|
2020-04-03 00:53:34 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [ setuptools six ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-03 00:53:34 +02:00
|
|
|
homepage = "https://github.com/KBNLresearch/isolyzer";
|
|
|
|
description = "Verify size of ISO 9660 image against Volume Descriptor fields";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ mkg20001 ];
|
|
|
|
};
|
|
|
|
}
|