python310Packages.bite-parser: 0.1.1 -> 0.1.3

https://github.com/jgosmann/bite-parser/blob/v0.1.3/CHANGELOG.rst
This commit is contained in:
Robert Schütz 2022-06-11 15:39:22 +00:00
parent cd07d6c82e
commit e6912f3a94

View File

@ -10,7 +10,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "bite-parser"; pname = "bite-parser";
version = "0.1.1"; version = "0.1.3";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -18,15 +18,9 @@ buildPythonPackage rec {
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "8021100bfbd6cc6056605361e763a3591efdea38014b3d8aa76c74c74de4ead4"; sha256 = "0f246e98a5556d6ed9a33fda1e94c3ab906305729feb30d25e35344b3e1c1fd9";
}; };
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'python = "^3.7,<=3.10"' 'python = "^3.7,<3.11"' \
--replace poetry.masonry.api poetry.core.masonry.api
'';
nativeBuildInputs = [ nativeBuildInputs = [
poetry-core poetry-core
]; ];
@ -42,6 +36,7 @@ buildPythonPackage rec {
meta = { meta = {
description = "Asynchronous parser taking incremental bites out of your byte input stream"; description = "Asynchronous parser taking incremental bites out of your byte input stream";
homepage = "https://github.com/jgosmann/bite-parser"; homepage = "https://github.com/jgosmann/bite-parser";
changelog = "https://github.com/jgosmann/bite-parser/blob/v${version}/CHANGELOG.rst";
license = lib.licenses.mit; license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ]; maintainers = with lib.maintainers; [ dotlambda ];
}; };