python313Packages.pybbox: init at 0.0.5-alpha

This commit is contained in:
Jamie Magee
2025-07-04 23:25:23 -07:00
parent b441e40fcd
commit 1bae321361
2 changed files with 42 additions and 0 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 ];
};
}
+2
View File
@@ -12297,6 +12297,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 { };