python312Packages.std-uritemplate: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-11 23:41:13 +02:00
parent 50b7b85754
commit 200c034c85

View File

@ -1,8 +1,9 @@
{ lib {
, buildPythonPackage lib,
, fetchPypi buildPythonPackage,
, poetry-core fetchPypi,
, pythonOlder poetry-core,
pythonOlder,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -18,16 +19,12 @@ buildPythonPackage rec {
hash = "sha256-85dldY+2WB+Hn6fBBHoKJ7fIe7fDyddYxAjDD83lHGc="; hash = "sha256-85dldY+2WB+Hn6fBBHoKJ7fIe7fDyddYxAjDD83lHGc=";
}; };
build-system = [ build-system = [ poetry-core ];
poetry-core
];
# Module doesn't have unittest, only functional tests # Module doesn't have unittest, only functional tests
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [ "stduritemplate" ];
"stduritemplate"
];
meta = with lib; { meta = with lib; {
description = "Std-uritemplate implementation for Python"; description = "Std-uritemplate implementation for Python";