python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / me_cleaner / default.nix
blob4872c349b20da23468601ccf134c46a624e34e08
1 { lib, python3, fetchFromGitHub }:
3 python3.pkgs.buildPythonPackage rec {
4   pname = "me_cleaner";
5   version = "1.2";
7   src = fetchFromGitHub {
8     owner = "corna";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "1bdj2clm13ir441vn7sv860xsc5gh71ja5lc2wn0gggnff0adxj4";
12   };
14   meta = with lib; {
15     inherit (src.meta) homepage;
16     description = "Tool for partial deblobbing of Intel ME/TXE firmware images";
17     longDescription = ''
18       me_cleaner is a Python script able to modify an Intel ME firmware image
19       with the final purpose of reducing its ability to interact with the system.
20     '';
21     license = licenses.gpl3;
22     maintainers = with maintainers; [ ];
23   };