Commit a335e915 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python310Packages.bitlist: 0.8.0 -> 1.0.1

parent 872580ae
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -9,14 +9,14 @@

buildPythonPackage rec {
  pname = "bitlist";
  version = "0.8.0";
  format = "setuptools";
  version = "1.0.1";
  format = "pyproject";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-43Oh1ERGsW12HOqpbIa7rzLKrP9tIjckZhHwZSmBypE=";
    hash = "sha256-rpXQKkV2RUuYza+gfpGEH3kFJ+hjuNGKV2i46eXQUUI=";
  };

  propagatedBuildInputs = [
@@ -33,8 +33,8 @@ buildPythonPackage rec {
  ];

  postPatch = ''
    substituteInPlace setup.cfg \
      --replace " --cov=bitlist --cov-report term-missing" ""
    substituteInPlace pyproject.toml \
      --replace "--doctest-modules --ignore=docs --cov=bitlist --cov-report term-missing" ""
  '';

  meta = with lib; {