pythonPackages.pychm,python3Packages.pychm: init at 0.8.6

This commit is contained in:
Alexander Shpilkin 2022-06-16 07:17:33 +03:00
parent f1c9c23aad
commit a07a608342
No known key found for this signature in database
GPG key ID: 55F6F5B75637BD38
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, chmlib
}:
buildPythonPackage rec {
pname = "pychm";
version = "0.8.6";
src = fetchPypi {
inherit pname version;
sha256 = "0wpn9ijlsmrpyiwg3drmgz4dms1i1i347adgqw37bkrh3vn6yq16";
};
buildInputs = [ chmlib ];
pythonImportsCheck = [ "chm" ];
meta = with lib; {
description = "Library to manipulate Microsoft HTML Help (CHM) files";
homepage = "https://github.com/dottedmag/pychm";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ alexshpilkin ];
};
}

View file

@ -7084,6 +7084,8 @@ in {
pychef = callPackage ../development/python-modules/pychef { };
pychm = callPackage ../development/python-modules/pychm { };
PyChromecast = callPackage ../development/python-modules/pychromecast { };
pyclimacell = callPackage ../development/python-modules/pyclimacell { };