nixpkgs/pkgs/development/python-modules/traits/default.nix
R. RyanTM 82c83bf6c4 python37Packages.traits: 5.0.0 -> 5.1.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-traits/versions
2019-05-02 04:15:43 -07:00

40 lines
852 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, python
, pytest
, numpy
, isPy33
}:
buildPythonPackage rec {
pname = "traits";
version = "5.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "0lwmqgkjihqkf269xmdqsa302p378zjcpz01k9a98br7ngzrsj64";
};
# 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";
};
}