python3Packages.mouser: init at 0.1.6

This commit is contained in:
Jasper Chan
2026-01-30 11:32:21 -08:00
parent 650c9fe165
commit 702e4ef699
2 changed files with 57 additions and 0 deletions
@@ -0,0 +1,55 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
poetry-core,
# dependencies
click,
requests,
# tests
pytestCheckHook,
}:
buildPythonPackage (finalAttrs: {
pname = "mouser";
version = "0.1.6";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "sparkmicro";
repo = "mouser-api";
tag = finalAttrs.version;
hash = "sha256-E8RYtuY4OONl9fI25I2utk3JfElVJHlpfCuOPvHo5Dg=";
};
build-system = [
poetry-core
];
dependencies = [
click
requests
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "mouser" ];
disabledTests = [
# Search tests require an API key and network access
"search"
];
meta = {
description = "Mouser Python API";
homepage = "https://github.com/sparkmicro/mouser-api";
changelog = "https://github.com/sparkmicro/mouser-api/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
gigahawk
];
};
})
+2
View File
@@ -10314,6 +10314,8 @@ self: super: with self; {
mouseinfo = callPackage ../development/python-modules/mouseinfo { };
mouser = callPackage ../development/python-modules/mouser { };
moviepy = callPackage ../development/python-modules/moviepy { };
moyopy = callPackage ../development/python-modules/moyopy { };