nixpkgs/pkgs/development/python-modules/lxmf/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
799 B
Nix
Raw Normal View History

2022-04-09 13:56:24 +00:00
{ lib
, buildPythonPackage
, fetchFromGitHub
, rns
, pythonOlder
}:
buildPythonPackage rec {
pname = "lxmf";
version = "0.3.3";
2022-04-09 13:56:24 +00:00
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "markqvist";
repo = "lxmf";
2022-04-17 02:03:59 +00:00
rev = "refs/tags/${version}";
hash = "sha256-IbBuQuKWFjWUpVRdo5rl2Wq8vCAngg9/TKLuljRmKAU=";
2022-04-09 13:56:24 +00:00
};
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";
changelog = "https://github.com/markqvist/LXMF/releases/tag/${version}";
2022-04-09 13:56:24 +00:00
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}