python312Packages.thriftpy2: format with nixfmt

This commit is contained in:
Fabian Affolter
2024-05-11 10:33:37 +02:00
parent bd99afd303
commit 38db716fa3
@@ -1,12 +1,13 @@
{ lib
, buildPythonPackage
, cython
, fetchFromGitHub
, ply
, pythonOlder
, six
, setuptools
, tornado
{
lib,
buildPythonPackage,
cython,
fetchFromGitHub,
ply,
pythonOlder,
six,
setuptools,
tornado,
}:
buildPythonPackage rec {
@@ -23,13 +24,9 @@ buildPythonPackage rec {
hash = "sha256-Pjy9OPwFfKaw+XVl7IbbAKPz050TlqI4+yLqSITOkSY=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
nativeBuildInputs = [
cython
];
nativeBuildInputs = [ cython ];
dependencies = [
ply
@@ -40,9 +37,7 @@ buildPythonPackage rec {
# Not all needed files seems to be present
doCheck = false;
pythonImportsCheck = [
"thriftpy2"
];
pythonImportsCheck = [ "thriftpy2" ];
meta = with lib; {
description = "Python module for Apache Thrift";