blob: ae3c36da87d162a4a36ea062d980d9c88ad36a10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
}:
buildPythonPackage rec {
pname = "xmind";
version = "1.2.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "zhuifengshen";
repo = "xmind";
rev = "v${version}";
sha256 = "xC1WpHz2eHb5+xShM/QUQAIYnJNyK1EKWbTXJKhDwbQ=";
};
# Project thas no tests
doCheck = false;
pythonImportsCheck = [ "xmind" ];
meta = {
description = "Python module to create mindmaps";
homepage = "https://github.com/zhuifengshen/xmind";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
|