python3Packages.intbitset: reformat with nixfmt-rfc-style

This commit is contained in:
Sigmanificient 2024-05-10 03:55:05 +02:00
parent f3542b86e2
commit ddd40b4e08

View File

@ -1,14 +1,16 @@
{ lib
, fetchPypi
, buildPythonPackage
, pytestCheckHook
, pythonOlder
{
lib,
fetchPypi,
buildPythonPackage,
pytestCheckHook,
pythonOlder,
setuptools
}:
buildPythonPackage rec {
pname = "intbitset";
version = "3.1.0";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
@ -17,19 +19,16 @@ buildPythonPackage rec {
hash = "sha256-boPFun/aJSCqhWVCi7r4Qt63KT1mXzzYKByzklTS/3E=";
};
nativeCheckInputs = [
pytestCheckHook
];
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"intbitset"
];
pythonImportsCheck = [ "intbitset" ];
meta = with lib; {
description = "C-based extension implementing fast integer bit sets";
homepage = "https://github.com/inveniosoftware/intbitset";
changelog = "https://github.com/inveniosoftware-contrib/intbitset/blob/v${version}/CHANGELOG.rst";
license = licenses.lgpl3Plus;
maintainers = with lib.maintainers; [ sigmanificient ];
maintainers = with maintainers; [ sigmanificient ];
};
}