mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
40 lines
852 B
Nix
40 lines
852 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, python
|
|
, pytest
|
|
, numpy
|
|
, isPy33
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "traits";
|
|
version = "4.6.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0w43qv36wnrimlh0nzzgg81315a18yza3vk494wqxf1l19g390jx";
|
|
};
|
|
|
|
# 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";
|
|
homepage = https://pypi.python.org/pypi/traits;
|
|
license = "BSD";
|
|
};
|
|
|
|
}
|