python3Packages.ipydatawidgets: init at 4.0.1

This commit is contained in:
Ben Darwin
2020-05-07 23:04:00 -04:00
committed by Frederik Rietdijk
parent 7ecde8b92b
commit d78ba41a56
3 changed files with 46 additions and 2 deletions

View File

@@ -0,0 +1,42 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, pytest
, pytestcov
, nbval
, ipywidgets
, numpy
, six
, traittypes
}:
buildPythonPackage rec {
pname = "ipydatawidgets";
version = "4.0.1";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "1h7cppy959q6x5rvkdjhzxhqh57s37i2xsish5rfavcqbp2xgk4g";
};
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 ];
};
}