python3Packages.lxmf: init at 0.1.4
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, rns
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "lxmf";
|
||||
version = "0.1.4";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "markqvist";
|
||||
repo = "lxmf";
|
||||
rev = version;
|
||||
hash = "sha256-kWawKlEAnn/uNjM2TT2aVW2V4M0+S/1Ysrw/muJhC0s=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
rns
|
||||
];
|
||||
|
||||
# Module has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"LXMF"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Lightweight Extensible Message Format for Reticulum";
|
||||
homepage = "https://github.com/markqvist/lxmf";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
||||
@@ -4894,6 +4894,8 @@ in {
|
||||
|
||||
lupupy = callPackage ../development/python-modules/lupupy { };
|
||||
|
||||
lxmf= callPackage ../development/python-modules/lxmf { };
|
||||
|
||||
lxml = callPackage ../development/python-modules/lxml {
|
||||
inherit (pkgs) libxml2 libxslt zlib;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user