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

This commit is contained in:
Martin Weinelt
2025-07-06 01:00:52 +02:00
committed by GitHub
3 changed files with 44 additions and 1 deletions
@@ -0,0 +1,40 @@
{
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 ];
};
}
@@ -549,7 +549,8 @@
];
"bbox" =
ps: with ps; [
]; # missing inputs: pybbox
pybbox
];
"beewi_smartclim" =
ps: with ps; [
]; # missing inputs: beewi-smartclim
+2
View File
@@ -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 { };