summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pex/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pex/default.nix')
-rw-r--r--pkgs/development/python-modules/pex/default.nix24
1 files changed, 12 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/pex/default.nix b/pkgs/development/python-modules/pex/default.nix
index daabf4625ce5..3ef394f9bb34 100644
--- a/pkgs/development/python-modules/pex/default.nix
+++ b/pkgs/development/python-modules/pex/default.nix
@@ -1,8 +1,9 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, hatchling
-, pythonOlder
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ hatchling,
+ pythonOlder,
}:
buildPythonPackage rec {
@@ -17,22 +18,21 @@ buildPythonPackage rec {
hash = "sha256-0SZMkRYcIRObRUdEyAU+Jbiq0tFdqJIyGBtPOPP1RXU=";
};
- build-system = [
- hatchling
- ];
+ build-system = [ hatchling ];
# A few more dependencies I don't want to handle right now...
doCheck = false;
- pythonImportsCheck = [
- "pex"
- ];
+ pythonImportsCheck = [ "pex" ];
meta = with lib; {
description = "Python library and tool for generating .pex (Python EXecutable) files";
homepage = "https://github.com/pantsbuild/pex";
changelog = "https://github.com/pantsbuild/pex/releases/tag/v${version}";
license = licenses.asl20;
- maintainers = with maintainers; [ copumpkin phaer ];
+ maintainers = with maintainers; [
+ copumpkin
+ phaer
+ ];
};
}