summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pymarshal/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pymarshal/default.nix')
-rw-r--r--pkgs/development/python-modules/pymarshal/default.nix23
1 files changed, 10 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/pymarshal/default.nix b/pkgs/development/python-modules/pymarshal/default.nix
index 6a4736c3fb21..b9ec633afb10 100644
--- a/pkgs/development/python-modules/pymarshal/default.nix
+++ b/pkgs/development/python-modules/pymarshal/default.nix
@@ -1,10 +1,11 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, bson
-, pytestCheckHook
-, pyyaml
-, setuptools
+{
+ lib,
+ buildPythonPackage,
+ fetchFromGitHub,
+ bson,
+ pytestCheckHook,
+ pyyaml,
+ setuptools,
}:
buildPythonPackage rec {
@@ -26,13 +27,9 @@ buildPythonPackage rec {
--replace "--cov=pymarshal --cov-report=html --cov-report=term" ""
'';
- nativeBuildInputs = [
- setuptools
- ];
+ nativeBuildInputs = [ setuptools ];
- propagatedBuildInputs = [
- bson
- ];
+ propagatedBuildInputs = [ bson ];
nativeCheckInputs = [
pytestCheckHook