lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

pythonPackages.pylzma: init at 0.5.0

+25
+23
pkgs/development/python-modules/pylzma/default.nix
··· 1 + { lib, buildPythonPackage, fetchPypi }: 2 + 3 + buildPythonPackage rec { 4 + pname = "pylzma"; 5 + version = "0.5.0"; 6 + 7 + # This vendors an old LZMA SDK 8 + # After some discussion, it seemed most reasonable to keep it that way 9 + # xz, and uefi-firmware-parser also does this 10 + src = fetchPypi { 11 + inherit pname version; 12 + sha256 = "074anvhyjgsv2iby2ql1ixfvjgmhnvcwjbdz8gk70xzkzcm1fx5q"; 13 + }; 14 + 15 + pythonImportsCheck = [ "pylzma" ]; 16 + 17 + meta = with lib; { 18 + homepage = "https://www.joachim-bauch.de/projects/pylzma/"; 19 + description = "Platform independent python bindings for the LZMA compression library"; 20 + license = licenses.lgpl21Only; 21 + maintainers = with maintainers; [ dandellion ]; 22 + }; 23 + }
+2
pkgs/top-level/python-packages.nix
··· 6211 6211 6212 6212 pylxd = callPackage ../development/python-modules/pylxd { }; 6213 6213 6214 + pylzma = callPackage ../development/python-modules/pylzma { }; 6215 + 6214 6216 pymacaroons = callPackage ../development/python-modules/pymacaroons { }; 6215 6217 6216 6218 pymaging = callPackage ../development/python-modules/pymaging { };