My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/xmind/default.nix

34 lines
660 B

{ 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=";
};
# Projec 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 ];
};
}