python310Packages.bitlist: 0.8.0 -> 1.0.1

This commit is contained in:
Fabian Affolter 2022-08-06 23:22:36 +02:00
parent 872580ae90
commit a335e915e1

View file

@ -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; {