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