python312Packages.requirements-parser: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-05 10:33:02 +02:00
parent 2fb8adf890
commit f40fdf8c3c
1 changed files with 12 additions and 17 deletions

View File

@ -1,11 +1,12 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, pytestCheckHook
, pythonOlder
, setuptools
, types-setuptools
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
pytestCheckHook,
pythonOlder,
setuptools,
types-setuptools,
}:
buildPythonPackage rec {
@ -22,22 +23,16 @@ buildPythonPackage rec {
hash = "sha256-ZkyfK2s6wmKX/AJsOXlAHOpJ2/zZO0zipdM3j2BrrWo=";
};
build-system = [
poetry-core
];
build-system = [ poetry-core ];
dependencies = [
setuptools
types-setuptools
];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"requirements"
];
pythonImportsCheck = [ "requirements" ];
meta = with lib; {
description = "Pip requirements file parser";