Files
nixpkgs/pkgs/development/python-modules/apptools/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

65 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
configobj,
fetchFromGitHub,
numpy,
pandas,
pyface,
pytestCheckHook,
pythonOlder,
setuptools,
tables,
traits,
traitsui,
}:
buildPythonPackage rec {
pname = "apptools";
version = "5.3.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "enthought";
repo = "apptools";
tag = version;
hash = "sha256-46QiVLWdlM89GMCIqVNuNGJjT2nwWJ1c6DyyvEPcceQ=";
};
build-system = [ setuptools ];
dependencies = [ traits ];
optional-dependencies = {
gui = [
pyface
traitsui
];
h5 = [
numpy
pandas
tables
];
persistence = [ numpy ];
preferences = [ configobj ];
};
nativeCheckInputs = [ pytestCheckHook ] ++ lib.concatAttrValues optional-dependencies;
preCheck = ''
export HOME=$TMP
'';
pythonImportsCheck = [ "apptools" ];
meta = {
description = "Set of packages that Enthought has found useful in creating a number of applications";
homepage = "https://github.com/enthought/apptools";
changelog = "https://github.com/enthought/apptools/releases/tag/${src.tag}";
license = lib.licenses.bsdOriginal;
maintainers = [ ];
};
}