Loading pkgs/development/python-modules/dash-bootstrap-templates/default.nix 0 → 100644 +46 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchFromGitHub, setuptools, setuptools-scm, dash, dash-bootstrap-components, numpy, }: buildPythonPackage rec { pname = "dash-bootstrap-templates"; version = "1.3.0"; pyproject = true; src = fetchFromGitHub { owner = "AnnMarieW"; repo = "dash-bootstrap-templates"; rev = "V${version}"; hash = "sha256-dbXqqncxfIZ6traVQ2a/2E1Co4MVdoiU8ox6nBnqviE="; }; build-system = [ setuptools setuptools-scm ]; dependencies = [ dash dash-bootstrap-components numpy ]; pythonImportsCheck = [ "dash_bootstrap_templates" ]; # There are no tests. doCheck = false; meta = { description = "A collection of 52 Plotly figure templates with a Bootstrap theme"; homepage = "https://github.com/AnnMarieW/dash-bootstrap-templates"; changelog = "https://github.com/AnnMarieW/dash-bootstrap-templates/releases/tag/V${version}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ flokli ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -2949,6 +2949,8 @@ self: super: with self; { dash-bootstrap-components = callPackage ../development/python-modules/dash-bootstrap-components { }; dash-bootstrap-templates = callPackage ../development/python-modules/dash-bootstrap-templates { }; dash-core-components = callPackage ../development/python-modules/dash-core-components { }; dash-html-components = callPackage ../development/python-modules/dash-html-components { }; Loading Loading
pkgs/development/python-modules/dash-bootstrap-templates/default.nix 0 → 100644 +46 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchFromGitHub, setuptools, setuptools-scm, dash, dash-bootstrap-components, numpy, }: buildPythonPackage rec { pname = "dash-bootstrap-templates"; version = "1.3.0"; pyproject = true; src = fetchFromGitHub { owner = "AnnMarieW"; repo = "dash-bootstrap-templates"; rev = "V${version}"; hash = "sha256-dbXqqncxfIZ6traVQ2a/2E1Co4MVdoiU8ox6nBnqviE="; }; build-system = [ setuptools setuptools-scm ]; dependencies = [ dash dash-bootstrap-components numpy ]; pythonImportsCheck = [ "dash_bootstrap_templates" ]; # There are no tests. doCheck = false; meta = { description = "A collection of 52 Plotly figure templates with a Bootstrap theme"; homepage = "https://github.com/AnnMarieW/dash-bootstrap-templates"; changelog = "https://github.com/AnnMarieW/dash-bootstrap-templates/releases/tag/V${version}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ flokli ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -2949,6 +2949,8 @@ self: super: with self; { dash-bootstrap-components = callPackage ../development/python-modules/dash-bootstrap-components { }; dash-bootstrap-templates = callPackage ../development/python-modules/dash-bootstrap-templates { }; dash-core-components = callPackage ../development/python-modules/dash-core-components { }; dash-html-components = callPackage ../development/python-modules/dash-html-components { }; Loading