lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #133049 from SuperSandro2000/cleanup

authored by

Sandro and committed by
GitHub
94cff142 d85ded6d

+11 -6
+4 -1
pkgs/development/python-modules/pytest-mockservers/default.nix
··· 31 31 poetry-core 32 32 ]; 33 33 34 + buildInputs = [ 35 + pytest 36 + ]; 37 + 34 38 propagatedBuildInputs = [ 35 39 aiohttp 36 - pytest 37 40 pytest-asyncio 38 41 ]; 39 42
+7 -4
pkgs/development/python-modules/pytest-resource-path/default.nix
··· 3 3 , pythonOlder 4 4 , fetchFromGitHub 5 5 , colorama 6 - , pytest-runner 7 6 , pytest 8 7 , pytestCheckHook 9 8 }: ··· 20 19 sha256 = "1siv3pk4fsabz254fdzr7c0pxy124habnbw4ym66pfk883fr96g2"; 21 20 }; 22 21 23 - nativeBuildInputs = [ 24 - pytest-runner 22 + postPatch = '' 23 + substituteInPlace setup.cfg \ 24 + --replace "pytest-runner" "" 25 + ''; 26 + 27 + buildInputs = [ 28 + pytest 25 29 ]; 26 30 27 31 propagatedBuildInputs = [ 28 32 colorama 29 - pytest 30 33 ]; 31 34 32 35 checkInputs = [
-1
pkgs/development/python-modules/roonapi/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - , fetchpatch 5 4 , ifaddr 6 5 , poetry-core 7 6 , pythonOlder