mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 14:16:35 +01:00
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
61 lines
1.1 KiB
Nix
61 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
configobj,
|
|
fetchFromGitHub,
|
|
numpy,
|
|
pandas,
|
|
pyface,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
tables,
|
|
traits,
|
|
traitsui,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "apptools";
|
|
version = "5.3.1";
|
|
pyproject = true;
|
|
|
|
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 = [ ];
|
|
};
|
|
}
|