diff options
Diffstat (limited to 'pkgs/development/python-modules/javaproperties/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/javaproperties/default.nix | 31 |
1 files changed, 12 insertions, 19 deletions
diff --git a/pkgs/development/python-modules/javaproperties/default.nix b/pkgs/development/python-modules/javaproperties/default.nix index 28ab53ce98a4..52627e564125 100644 --- a/pkgs/development/python-modules/javaproperties/default.nix +++ b/pkgs/development/python-modules/javaproperties/default.nix @@ -1,10 +1,11 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, setuptools -, six -, pytestCheckHook -, python-dateutil +{ + lib, + buildPythonPackage, + fetchFromGitHub, + setuptools, + six, + pytestCheckHook, + python-dateutil, }: buildPythonPackage rec { @@ -19,26 +20,18 @@ buildPythonPackage rec { sha256 = "16rcdw5gd4a21v2xb1j166lc9z2dqcv68gqvk5mvpnm0x6nwadgp"; }; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; - propagatedBuildInputs = [ - six - ]; + propagatedBuildInputs = [ six ]; nativeCheckInputs = [ python-dateutil pytestCheckHook ]; - disabledTests = [ - "time" - ]; + disabledTests = [ "time" ]; - disabledTestPaths = [ - "test/test_propclass.py" - ]; + disabledTestPaths = [ "test/test_propclass.py" ]; meta = with lib; { description = "Microsoft Azure API Management Client Library for Python"; |
