summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/podcastparser/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/podcastparser/default.nix')
-rw-r--r--pkgs/development/python-modules/podcastparser/default.nix19
1 files changed, 8 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/podcastparser/default.nix b/pkgs/development/python-modules/podcastparser/default.nix
index d844a19f902e..f2f458a2ee01 100644
--- a/pkgs/development/python-modules/podcastparser/default.nix
+++ b/pkgs/development/python-modules/podcastparser/default.nix
@@ -1,8 +1,9 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, pytestCheckHook
-, pythonOlder
+{
+ lib,
+ buildPythonPackage,
+ fetchFromGitHub,
+ pytestCheckHook,
+ pythonOlder,
}:
buildPythonPackage rec {
@@ -24,13 +25,9 @@ buildPythonPackage rec {
--replace "--cov=podcastparser --cov-report html --doctest-modules" ""
'';
- nativeCheckInputs = [
- pytestCheckHook
- ];
+ nativeCheckInputs = [ pytestCheckHook ];
- pythonImportsCheck = [
- "podcastparser"
- ];
+ pythonImportsCheck = [ "podcastparser" ];
meta = with lib; {
description = "Module to parse podcasts";