about summary refs log tree commit diff
path: root/pkgs/development/python-modules/rtp/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/rtp/default.nix')
-rw-r--r--pkgs/development/python-modules/rtp/default.nix23
1 files changed, 12 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/rtp/default.nix b/pkgs/development/python-modules/rtp/default.nix
index aef1171d8d47b..ad27d151776c5 100644
--- a/pkgs/development/python-modules/rtp/default.nix
+++ b/pkgs/development/python-modules/rtp/default.nix
@@ -1,11 +1,11 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, python3
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
 
   # nativeCheckInputs
-, hypothesis
-, unittestCheckHook
+  hypothesis,
+  unittestCheckHook,
 
 }:
 
@@ -24,15 +24,16 @@ buildPythonPackage rec {
     unittestCheckHook
   ];
 
-  unittestFlagsArray = [ "-s" "tests" "-v" ];
-
-  pythonImportsCheck = [
-    "rtp"
+  unittestFlagsArray = [
+    "-s"
+    "tests"
+    "-v"
   ];
 
+  pythonImportsCheck = [ "rtp" ];
 
   meta = with lib; {
-    description = "A library for decoding/encoding rtp packets";
+    description = "Library for decoding/encoding rtp packets";
     homepage = "https://github.com/bbc/rd-apmm-python-lib-rtp";
     license = licenses.asl20;
     maintainers = with maintainers; [ fleaz ];