python313Packages.pybbox: init at 0.0.5-alpha
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user