depot/third_party/nixpkgs/pkgs/tools/cd-dvd/isolyzer/default.nix
Default email 01ed8ef136 Project import generated by Copybara.
GitOrigin-RevId: 20fc948445a6c22d4e8d5178e9a6bc6e1f5417c8
2022-11-21 19:40:18 +02:00

25 lines
621 B
Nix

{ lib
, python3
, fetchFromGitHub
}:
python3.pkgs.buildPythonApplication rec {
pname = "isolyzer";
version = "1.4.0";
src = fetchFromGitHub {
owner = "KBNLresearch";
repo = pname;
rev = "refs/tags/${version}";
sha256 = "sha256-NqkjnEwpaoyguG5GLscKS9UQGtF9N4jUL5JhrMtKCFE=";
};
propagatedBuildInputs = with python3.pkgs; [ setuptools six ];
meta = with lib; {
homepage = "https://github.com/KBNLresearch/isolyzer";
description = "Verify size of ISO 9660 image against Volume Descriptor fields";
license = licenses.asl20;
maintainers = with maintainers; [ mkg20001 ];
};
}