Merge pull request #139542 from Creator54/p1

This commit is contained in:
Sandro 2021-11-17 02:42:41 +01:00 committed by GitHub
commit a46c46cf3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 39 additions and 0 deletions

View File

@ -2346,6 +2346,12 @@
githubId = 12202789;
name = "CrazedProgrammer";
};
creator54 = {
email = "hi.creator54@gmail.com";
github = "creator54";
githubId = 34543609;
name = "creator54";
};
cript0nauta = {
email = "shareman1204@gmail.com";
github = "cript0nauta";

View File

@ -0,0 +1,31 @@
{ lib, buildPythonPackage, fetchPypi, ipykernel, ipywidgets, pythonOlder, pytestCheckHook, pandas }:
buildPythonPackage rec {
pname = "pydeck";
version = "0.7.0";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "1zi0gqzd0byj16ja74m2dm99a1hmrlhk26y0x7am07vb1d8lvvsy";
};
pythonImportsCheck = [ "pydeck" ];
checkInputs = [ pytestCheckHook pandas ];
# tries to start a jupyter server
disabledTests = [ "test_nbconvert" ];
propagatedBuildInputs = [
ipykernel
ipywidgets
];
meta = with lib; {
homepage = "https://github.com/visgl/deck.gl/tree/master/bindings/pydeck";
description = "Large-scale interactive data visualization in Python";
maintainers = with maintainers; [ creator54 ];
license = licenses.asl20;
};
}

View File

@ -6306,6 +6306,8 @@ in {
pydbus = callPackage ../development/python-modules/pydbus { };
pydeck = callPackage ../development/python-modules/pydeck { };
pydeconz = callPackage ../development/python-modules/pydeconz { };
pydelijn = callPackage ../development/python-modules/pydelijn { };