nixpkgs/pkgs/development/python-modules/stm32loader/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

61 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
# build-system
, flit-core
# dependenices
, progress
, pyserial
# optional-dependencies
, intelhex
# tests
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "stm32loader";
version = "0.7.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-QTLSEjdJtDH4GCamnKHN5pEjW41rRtAMXxyZZMM5K3w=";
};
nativeBuildInputs = [
flit-core
];
propagatedBuildInputs = [
progress
pyserial
];
passthru.optional-dependencies = {
hex = [
intelhex
];
};
nativeCheckInputs = [
pytestCheckHook
] ++ lib.flatten (lib.attrValues passthru.optional-dependencies);
pytestFlagsArray = [
"tests/unit"
];
meta = with lib; {
description = "Flash firmware to STM32 microcontrollers in Python";
mainProgram = "stm32loader";
homepage = "https://github.com/florisla/stm32loader";
changelog = "https://github.com/florisla/stm32loader/blob/v${version}/CHANGELOG.md";
license = licenses.gpl3;
maintainers = with maintainers; [ emily ];
};
}