Skip to content

Commit

Permalink
python312Packages.http-sf: format with nixfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff committed Apr 30, 2024
1 parent e5a17f2 commit 5e8c2e9
Showing 1 changed file with 10 additions and 15 deletions.
25 changes: 10 additions & 15 deletions pkgs/development/python-modules/http-sf/default.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, setuptools
, typing-extensions
{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
setuptools,
typing-extensions,
}:

buildPythonPackage rec {
Expand All @@ -20,20 +21,14 @@ buildPythonPackage rec {
hash = "sha256-p2GTCvuRhQVchFiLzoDYop9TUz/DT7eVY6Zioh+/rE8=";
};

build-system = [
setuptools
];
build-system = [ setuptools ];

dependencies = [
typing-extensions
];
dependencies = [ typing-extensions ];

# Tests require external data (https://github.com/httpwg/structured-field-tests)
doCheck = false;

pythonImportsCheck = [
"http_sf"
];
pythonImportsCheck = [ "http_sf" ];

meta = with lib; {
description = "Module to parse and serialise HTTP structured field values";
Expand Down

0 comments on commit 5e8c2e9

Please sign in to comment.