nixpkgs/pkgs/development/python-modules/traitsui/default.nix
2023-01-14 10:10:06 +01:00

41 lines
770 B
Nix

{ lib
, fetchPypi
, buildPythonPackage
, traits
, pyface
, pythonOlder
}:
buildPythonPackage rec {
pname = "traitsui";
version = "7.4.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-2zJRfpYioFgMIyCeE/gDLOoA5hxndJNnCf9F52M11bk=";
};
propagatedBuildInputs = [
traits
pyface
];
# Needs X server
doCheck = false;
pythonImportsCheck = [
"traitsui"
];
meta = with lib; {
description = "Traits-capable windowing framework";
homepage = "https://github.com/enthought/traitsui";
changelog = "https://github.com/enthought/traitsui/releases/tag/${version}";
license = licenses.bsdOriginal;
maintainers = with maintainers; [ knedlsepp ];
};
}