lol

python310Packages.bite-parser: 0.1.1 -> 0.1.3

https://github.com/jgosmann/bite-parser/blob/v0.1.3/CHANGELOG.rst

+3 -8
+3 -8
pkgs/development/python-modules/bite-parser/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "bite-parser"; 13 - version = "0.1.1"; 13 + version = "0.1.3"; 14 14 15 15 disabled = pythonOlder "3.7"; 16 16 ··· 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - sha256 = "8021100bfbd6cc6056605361e763a3591efdea38014b3d8aa76c74c74de4ead4"; 21 + sha256 = "0f246e98a5556d6ed9a33fda1e94c3ab906305729feb30d25e35344b3e1c1fd9"; 22 22 }; 23 - 24 - postPatch = '' 25 - substituteInPlace pyproject.toml \ 26 - --replace 'python = "^3.7,<=3.10"' 'python = "^3.7,<3.11"' \ 27 - --replace poetry.masonry.api poetry.core.masonry.api 28 - ''; 29 23 30 24 nativeBuildInputs = [ 31 25 poetry-core ··· 42 36 meta = { 43 37 description = "Asynchronous parser taking incremental bites out of your byte input stream"; 44 38 homepage = "https://github.com/jgosmann/bite-parser"; 39 + changelog = "https://github.com/jgosmann/bite-parser/blob/v${version}/CHANGELOG.rst"; 45 40 license = lib.licenses.mit; 46 41 maintainers = with lib.maintainers; [ dotlambda ]; 47 42 };