Unverified Commit ed59e8b6 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

python313Packages.pybbox: init at 0.0.5-alpha (#422578)

parents 8e6b99de fd51c00e
Loading
Loading
Loading
Loading
+40 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  netaddr,
  requests,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "pybbox";
  version = "0.0.5-alpha";
  format = "setuptools";

  disabled = pythonOlder "3.6";

  src = fetchFromGitHub {
    owner = "HydrelioxGitHub";
    repo = "pybbox";
    rev = version;
    hash = "sha256-xealTlH/rMlqEnENZXq0/EVDlF8lc/B8qeUmQPM6fUc=";
  };

  propagatedBuildInputs = [
    netaddr
    requests
  ];

  # Tests are incomplete and contain failing tests
  doCheck = false;

  pythonImportsCheck = [ "pybbox" ];

  meta = {
    description = "Python library for the Bouygues BBox Routeur API";
    homepage = "https://github.com/HydrelioxGitHub/pybbox";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.jamiemagee ];
  };
}
+2 −1
Original line number Diff line number Diff line
@@ -549,7 +549,8 @@
      ];
    "bbox" =
      ps: with ps; [
      ]; # missing inputs: pybbox
        pybbox
      ];
    "beewi_smartclim" =
      ps: with ps; [
      ]; # missing inputs: beewi-smartclim
+2 −0
Original line number Diff line number Diff line
@@ -12307,6 +12307,8 @@ self: super: with self; {
  pybase64 = callPackage ../development/python-modules/pybase64 { };
  pybbox = callPackage ../development/python-modules/pybbox { };
  pybcj = callPackage ../development/python-modules/pybcj { };
  pybids = callPackage ../development/python-modules/pybids { };