summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pypemicro/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pypemicro/default.nix')
-rw-r--r--pkgs/development/python-modules/pypemicro/default.nix17
1 files changed, 14 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/pypemicro/default.nix b/pkgs/development/python-modules/pypemicro/default.nix
index f73649ac72fe..7f51691529e9 100644
--- a/pkgs/development/python-modules/pypemicro/default.nix
+++ b/pkgs/development/python-modules/pypemicro/default.nix
@@ -1,4 +1,9 @@
-{ lib, buildPythonPackage, fetchPypi, autoPatchelfHook }:
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ autoPatchelfHook,
+}:
buildPythonPackage rec {
pname = "pypemicro";
@@ -19,7 +24,13 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python interface for PEMicro debug probes";
homepage = "https://github.com/NXPmicro/pypemicro";
- license = with licenses; [ bsd3 unfree ]; # it includes shared libraries for which no license is available (https://github.com/NXPmicro/pypemicro/issues/10)
- maintainers = with maintainers; [ frogamic sbruder ];
+ license = with licenses; [
+ bsd3
+ unfree
+ ]; # it includes shared libraries for which no license is available (https://github.com/NXPmicro/pypemicro/issues/10)
+ maintainers = with maintainers; [
+ frogamic
+ sbruder
+ ];
};
}