lol

python3Packages.pylzma: fix build, initialization of ‘long int’ from ‘void *’

+9
+9
pkgs/development/python-modules/pylzma/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchPypi, 5 + fetchpatch, 5 6 }: 6 7 7 8 buildPythonPackage rec { ··· 16 17 inherit pname version; 17 18 sha256 = "074anvhyjgsv2iby2ql1ixfvjgmhnvcwjbdz8gk70xzkzcm1fx5q"; 18 19 }; 20 + 21 + patches = [ 22 + # https://github.com/fancycode/pylzma/pull/82/ 23 + (fetchpatch { 24 + url = "https://github.com/fancycode/pylzma/commit/2fe0a4ed0588fd572931da4be10ad955636afde4.patch"; 25 + hash = "sha256-sWdMAmOPVTDnxNTjzPlqQYxqnjmRpK+OqwWF6jpXvIw="; 26 + }) 27 + ]; 19 28 20 29 pythonImportsCheck = [ "pylzma" ]; 21 30