Commit 33fde3aa authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python313Packages.bitlist: 1.2.0 -> 2.0.0

parent e69666e2
Loading
Loading
Loading
Loading
+8 −15
Original line number Diff line number Diff line
@@ -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 ];
  };
}