2018-10-28 16:46:44 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, python
|
|
|
|
, pytest
|
|
|
|
, numpy
|
|
|
|
, isPy33
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "traits";
|
2019-11-29 12:13:53 +01:00
|
|
|
version = "5.2.0";
|
2018-10-28 16:46:44 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-11-29 12:13:53 +01:00
|
|
|
sha256 = "1b71vp0l4523428aw098xw6rmkl8vlcy2aag40akijbyz1nnk541";
|
2018-10-28 16:46:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# Use pytest because its easier to discover tests
|
|
|
|
buildInputs = [ pytest ];
|
|
|
|
propagatedBuildInputs = [ numpy ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
py.test $out/${python.sitePackages}
|
|
|
|
'';
|
|
|
|
|
|
|
|
# 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
|
|
|
|
doCheck = isPy33;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Explicitly typed attributes for Python";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://pypi.python.org/pypi/traits";
|
2018-10-28 16:46:44 +01:00
|
|
|
license = "BSD";
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|