nixpkgs/pkgs/development/python-modules/traits/default.nix

34 lines
770 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, python
, numpy
}:
buildPythonPackage rec {
pname = "traits";
2021-10-08 23:23:17 +01:00
version = "6.3.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
2021-10-08 23:23:17 +01:00
sha256 = "770241df047feb9e3ed4c26a36c2468a5b754e6082a78eeb737f058bd45344f5";
};
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;
meta = with lib; {
description = "Explicitly typed attributes for Python";
homepage = "https://pypi.python.org/pypi/traits";
2021-10-08 23:23:17 +01:00
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}