diff options
Diffstat (limited to 'pkgs/development/python-modules/dict2xml/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/dict2xml/default.nix | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/dict2xml/default.nix b/pkgs/development/python-modules/dict2xml/default.nix index 6a68a695fbbb..6887f8a13ac7 100644 --- a/pkgs/development/python-modules/dict2xml/default.nix +++ b/pkgs/development/python-modules/dict2xml/default.nix @@ -1,8 +1,9 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, pythonOlder -, hatchling +{ + lib, + buildPythonPackage, + fetchFromGitHub, + pythonOlder, + hatchling, }: buildPythonPackage rec { @@ -19,16 +20,12 @@ buildPythonPackage rec { hash = "sha256-GNvG1VFz/qkkTrKleMrq8n6kcIYtfhUlQMyCqH9uQzw="; }; - nativeBuildInputs = [ - hatchling - ]; + nativeBuildInputs = [ hatchling ]; # Tests are inplemented in a custom DSL (RSpec) doCheck = false; - pythonImportsCheck = [ - "dict2xml" - ]; + pythonImportsCheck = [ "dict2xml" ]; meta = with lib; { description = "Library to convert a Python dictionary into an XML string"; |
