diff options
Diffstat (limited to 'pkgs/development/python-modules/pygccxml/default.nix')
-rw-r--r-- | pkgs/development/python-modules/pygccxml/default.nix | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/pkgs/development/python-modules/pygccxml/default.nix b/pkgs/development/python-modules/pygccxml/default.nix index 0d9b12edec7d..d079ff5e1d0c 100644 --- a/pkgs/development/python-modules/pygccxml/default.nix +++ b/pkgs/development/python-modules/pygccxml/default.nix @@ -1,10 +1,11 @@ -{ lib -, castxml -, fetchFromGitHub -, buildPythonPackage -, llvmPackages -, pythonOlder -, setuptools +{ + lib, + castxml, + fetchFromGitHub, + buildPythonPackage, + llvmPackages, + pythonOlder, + setuptools, }: buildPythonPackage rec { @@ -21,9 +22,7 @@ buildPythonPackage rec { hash = "sha256-wHZy2BG3h+OMTvIAPtLlq1vsW5V/TqZdnzBJ9VipMiQ="; }; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; buildInputs = [ castxml |