python312Packages.psrpcore: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-23 22:45:32 +02:00
parent 6c5126194b
commit 80ad1d77ac
1 changed files with 13 additions and 18 deletions

View File

@ -1,12 +1,13 @@
{ lib
, buildPythonPackage
, cryptography
, fetchFromGitHub
, powershell
, pytestCheckHook
, pythonOlder
, setuptools
, xmldiff
{
lib,
buildPythonPackage,
cryptography,
fetchFromGitHub,
powershell,
pytestCheckHook,
pythonOlder,
setuptools,
xmldiff,
}:
buildPythonPackage rec {
@ -23,13 +24,9 @@ buildPythonPackage rec {
hash = "sha256-YThumRHMOTyhP6/EmNEew47v/X4Y1aYg1nvgZJz2XUg=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
cryptography
];
dependencies = [ cryptography ];
nativeCheckInputs = [
powershell
@ -37,9 +34,7 @@ buildPythonPackage rec {
xmldiff
];
pythonImportsCheck = [
"psrpcore"
];
pythonImportsCheck = [ "psrpcore" ];
meta = with lib; {
description = "Library for the PowerShell Remoting Protocol (PSRP)";