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