2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-28 15:46:44 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2020-06-16 22:19:33 +01:00
|
|
|
, isPy27
|
2018-10-28 15:46:44 +00:00
|
|
|
, python
|
|
|
|
, numpy
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "traits";
|
2021-10-08 23:23:17 +01:00
|
|
|
version = "6.3.0";
|
|
|
|
disabled = isPy27;
|
2018-10-28 15:46:44 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-10-08 23:23:17 +01:00
|
|
|
sha256 = "770241df047feb9e3ed4c26a36c2468a5b754e6082a78eeb737f058bd45344f5";
|
2018-10-28 15:46:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ numpy ];
|
|
|
|
|
|
|
|
# Test suite is broken for 3.x on latest release
|
|
|
|
# https://github.com/enthought/traits/issues/187
|
|
|
|
# https://github.com/enthought/traits/pull/188
|
|
|
|
# Furthermore, some tests fail due to being in a chroot
|
2020-05-04 19:32:01 +01:00
|
|
|
doCheck = false;
|
2018-10-28 15:46:44 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-28 15:46:44 +00:00
|
|
|
description = "Explicitly typed attributes for Python";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://pypi.python.org/pypi/traits";
|
2021-10-08 23:23:17 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ ];
|
2018-10-28 15:46:44 +00:00
|
|
|
};
|
|
|
|
}
|