depot/third_party/nixpkgs/pkgs/tools/cd-dvd/isolyzer/default.nix
Default email 0eaa97ffad Project import generated by Copybara.
GitOrigin-RevId: c59ea8b8a0e7f927e7291c14ea6cd1bd3a16ff38
2020-08-20 19:08:02 +02:00

25 lines
617 B
Nix

{ stdenv
, python3
, fetchFromGitHub
}:
python3.pkgs.buildPythonApplication rec {
pname = "isolyzer";
version = "1.3.0";
src = fetchFromGitHub {
owner = "KBNLresearch";
repo = pname;
rev = version;
sha256 = "1fysm05cz0z54apn1p889xhbgjnfwax6fngi05yij5qp2zxqghf9";
};
propagatedBuildInputs = with python3.pkgs; [ setuptools six ];
meta = with stdenv.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 ];
};
}