summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/xmind/default.nix
blob: 3b5565955bdd8c09260189d19c0d35f0663e17aa (about) (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
31
32
33
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "xmind";
  version = "1.2.0";
  format = "setuptools";

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "zhuifengshen";
    repo = pname;
    rev = "v${version}";
    sha256 = "xC1WpHz2eHb5+xShM/QUQAIYnJNyK1EKWbTXJKhDwbQ=";
  };

  # Project thas no tests
  doCheck = false;

  pythonImportsCheck = [ "xmind" ];

  meta = with lib; {
    description = "Python module to create mindmaps";
    homepage = "https://github.com/zhuifengshen/xmind";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };
}