Merge pull request #234663 from mweinelt/pyipp-0.13.0

python310Packages.pyipp: 0.12.1 -> 0.13.0

authored by Fabian Affolter and committed by GitHub ae89c0d0 c7dabbff

+10 -7
+10 -7
pkgs/development/python-modules/pyipp/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "pyipp"; 18 - version = "0.12.1"; 18 + version = "0.13.0"; 19 19 format = "pyproject"; 20 20 21 21 disabled = pythonOlder "3.9"; ··· 24 24 owner = "ctalkington"; 25 25 repo = "python-ipp"; 26 26 rev = version; 27 - hash = "sha256-xTSi5Eh6vVuQ+Kr/oVMlh5YcckVRsfTUgdmGHndmX+Q="; 27 + hash = "sha256-lVpXtPxZZCyWycmkXZTMo5WTPtlehNY5IX7tiyIb1uM="; 28 28 }; 29 29 30 + postPatch = '' 31 + substituteInPlace pyproject.toml \ 32 + --replace 'version = "0.0.0"' 'version = "${version}"' \ 33 + --replace "--cov" "" 34 + ''; 35 + 30 36 nativeBuildInputs = [ 31 37 poetry-core 32 38 ]; ··· 45 51 pytestCheckHook 46 52 ]; 47 53 48 - postPatch = '' 49 - substituteInPlace pyproject.toml \ 50 - --replace 'version = "0.0.0"' 'version = "${version}"' \ 51 - --replace " --cov" "" 52 - ''; 54 + __darwinAllowLocalNetworking = true; 53 55 54 56 pythonImportsCheck = [ 55 57 "pyipp" 56 58 ]; 57 59 58 60 meta = with lib; { 61 + changelog = "https://github.com/ctalkington/python-ipp/releases/tag/${version}"; 59 62 description = "Asynchronous Python client for Internet Printing Protocol (IPP)"; 60 63 homepage = "https://github.com/ctalkington/python-ipp"; 61 64 license = licenses.mit;