pythonPackages.traittypes: remove unused input, add import check

This commit is contained in:
Sandro Jäckel 2021-02-15 23:22:36 +01:00
parent c6d82ec95e
commit 406069a67f
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -3,10 +3,9 @@
, fetchFromGitHub , fetchFromGitHub
, fetchpatch , fetchpatch
, isPy27 , isPy27
, pytest , pytestCheckHook
, nose , nose
, numpy , numpy
, scipy
, pandas , pandas
, xarray , xarray
, traitlets , traitlets
@ -35,7 +34,8 @@ buildPythonPackage rec {
propagatedBuildInputs = [ traitlets ]; propagatedBuildInputs = [ traitlets ];
checkInputs = [ numpy pandas xarray nose pytest ]; checkInputs = [ numpy pandas xarray nose pytestCheckHook ];
pythonImportsCheck = [ "traittypes" ];
meta = with lib; { meta = with lib; {
description = "Trait types for NumPy, SciPy, XArray, and Pandas"; description = "Trait types for NumPy, SciPy, XArray, and Pandas";