diff options
Diffstat (limited to 'pkgs/development/python-modules/aesedb/default.nix')
-rw-r--r-- | pkgs/development/python-modules/aesedb/default.nix | 29 |
1 files changed, 13 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/aesedb/default.nix b/pkgs/development/python-modules/aesedb/default.nix index fda6d316162a..e4c377895e43 100644 --- a/pkgs/development/python-modules/aesedb/default.nix +++ b/pkgs/development/python-modules/aesedb/default.nix @@ -1,13 +1,14 @@ -{ lib -, aiowinreg -, buildPythonPackage -, colorama -, fetchFromGitHub -, pycryptodomex -, pythonOlder -, setuptools -, tqdm -, unicrypto +{ + lib, + aiowinreg, + buildPythonPackage, + colorama, + fetchFromGitHub, + pycryptodomex, + pythonOlder, + setuptools, + tqdm, + unicrypto, }: buildPythonPackage rec { @@ -24,9 +25,7 @@ buildPythonPackage rec { hash = "sha256-nYuMWE03Rsw1XuD/bxccpu8rddeXgS/EKJcO1VBLTLU="; }; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ aiowinreg @@ -39,9 +38,7 @@ buildPythonPackage rec { # Module has no tests doCheck = false; - pythonImportsCheck = [ - "aesedb" - ]; + pythonImportsCheck = [ "aesedb" ]; meta = with lib; { description = "Parser for JET databases"; |