9405df4a82
GitOrigin-RevId: 8e4fe32876ca15e3d5eb3ecd3ca0b224417f5f17
42 lines
788 B
Nix
42 lines
788 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPy27
|
|
, pytest
|
|
, pytestcov
|
|
, nbval
|
|
, ipywidgets
|
|
, numpy
|
|
, six
|
|
, traittypes
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ipydatawidgets";
|
|
version = "4.2.0";
|
|
|
|
disabled = isPy27;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "d0e4b58b59b508165e8562b8f5d1dbfcd739855847ec0477bd9185a5e9b7c5bc";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
ipywidgets
|
|
numpy
|
|
six
|
|
traittypes
|
|
];
|
|
|
|
checkInputs = [ pytest pytestcov nbval ];
|
|
|
|
checkPhase = "pytest ipydatawidgets/tests";
|
|
|
|
meta = {
|
|
description = "Widgets to help facilitate reuse of large datasets across different widgets";
|
|
homepage = "https://github.com/vidartf/ipydatawidgets";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ bcdarwin ];
|
|
};
|
|
}
|