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.

40 lines
722 B
Nix
Raw Normal View History

2022-04-09 15:56:24 +02:00
{ lib
, buildPythonPackage
, fetchFromGitHub
, rns
, pythonOlder
}:
buildPythonPackage rec {
pname = "lxmf";
2022-06-23 11:05:50 +02:00
version = "0.1.7";
2022-04-09 15:56:24 +02:00
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "markqvist";
repo = "lxmf";
2022-04-17 04:03:59 +02:00
rev = "refs/tags/${version}";
2022-06-23 11:05:50 +02:00
hash = "sha256-SRDUFDtXJ1ZkX8A4ekF+YSOnxj/vsFsvr3W/LOIuerg=";
2022-04-09 15:56:24 +02: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";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}