summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/lcgit/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/lcgit/default.nix')
-rw-r--r--pkgs/development/python-modules/lcgit/default.nix19
1 files changed, 8 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/lcgit/default.nix b/pkgs/development/python-modules/lcgit/default.nix
index 0bb27d54cb1a..5164819073f0 100644
--- a/pkgs/development/python-modules/lcgit/default.nix
+++ b/pkgs/development/python-modules/lcgit/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" ""
'';
- nativeCheckInputs = [
- pytestCheckHook
- ];
+ nativeCheckInputs = [ pytestCheckHook ];
- pythonImportsCheck = [
- "lcgit"
- ];
+ pythonImportsCheck = [ "lcgit" ];
meta = with lib; {
description = "A pythonic Linear Congruential Generator iterator";