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