Merge pull request #163447 from r-ryantm/auto-update/python3.10-traitsui
python310Packages.traitsui: 7.2.1 -> 7.3.0
This commit is contained in:
commit
e82d40502b
1 changed files with 22 additions and 7 deletions
|
@ -1,24 +1,39 @@
|
||||||
{ lib, fetchPypi, buildPythonPackage
|
{ lib
|
||||||
, traits, pyface, six
|
, fetchPypi
|
||||||
|
, buildPythonPackage
|
||||||
|
, traits
|
||||||
|
, pyface
|
||||||
|
, pythonOlder
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "traitsui";
|
pname = "traitsui";
|
||||||
version = "7.2.1";
|
version = "7.3.0";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "dfc39015faf0591f9927e3d4d22bd95a16d49c85db30e60acd4ba7b85c7c5d5b";
|
hash = "sha256-ZkSz+PYColdgcC3IchuneM51lFBAk68UpIadI56GdPQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ traits pyface six ];
|
propagatedBuildInputs = [
|
||||||
|
traits
|
||||||
|
pyface
|
||||||
|
];
|
||||||
|
|
||||||
doCheck = false; # Needs X server
|
# Needs X server
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"traitsui"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Traits-capable windowing framework";
|
description = "Traits-capable windowing framework";
|
||||||
homepage = "https://github.com/enthought/traitsui";
|
homepage = "https://github.com/enthought/traitsui";
|
||||||
maintainers = with maintainers; [ knedlsepp ];
|
|
||||||
license = licenses.bsdOriginal;
|
license = licenses.bsdOriginal;
|
||||||
|
maintainers = with maintainers; [ knedlsepp ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue