From 33fde3aa45bb5839adf8fc6fb671de36d73ab652 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 22 Sep 2025 11:46:42 +0200 Subject: [PATCH] python313Packages.bitlist: 1.2.0 -> 2.0.0 --- .../python-modules/bitlist/default.nix | 23 +++++++------------ 1 file changed, 8 insertions(+), 15 deletions(-) diff --git a/pkgs/development/python-modules/bitlist/default.nix b/pkgs/development/python-modules/bitlist/default.nix index 0744302e4af5..c4c715c4a959 100644 --- a/pkgs/development/python-modules/bitlist/default.nix +++ b/pkgs/development/python-modules/bitlist/default.nix @@ -2,38 +2,31 @@ lib, buildPythonPackage, fetchPypi, - setuptools, - wheel, parts, - pytestCheckHook, pytest-cov-stub, - pythonOlder, + pytestCheckHook, + setuptools, }: buildPythonPackage rec { pname = "bitlist"; - version = "1.2.0"; + version = "2.0.0"; pyproject = true; - disabled = pythonOlder "3.7"; - src = fetchPypi { inherit pname version; - hash = "sha256-+/rBno+OH7yEiN4K9VC6BCEPuOv8nNp0hU+fWegjqPw="; + hash = "sha256-mbXSvIUYsnZy/pmZLFXa1bqrwK+JZ2eySuDRCVAs1zk="; }; - build-system = [ - setuptools - wheel - ]; - pythonRelaxDeps = [ "parts" ]; + build-system = [ setuptools ]; + dependencies = [ parts ]; nativeCheckInputs = [ - pytestCheckHook pytest-cov-stub + pytestCheckHook ]; pythonImportsCheck = [ "bitlist" ]; @@ -41,7 +34,7 @@ buildPythonPackage rec { meta = with lib; { description = "Python library for working with little-endian list representation of bit strings"; homepage = "https://github.com/lapets/bitlist"; - license = with licenses; [ mit ]; + license = licenses.mit; maintainers = with maintainers; [ fab ]; }; }