lol
0
fork

Configure Feed

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

python311Packages.pvo: update disabled

+8 -8
+8 -8
pkgs/development/python-modules/pvo/default.nix
··· 16 16 version = "2.0.0"; 17 17 format = "pyproject"; 18 18 19 - disabled = pythonOlder "3.10"; 19 + disabled = pythonOlder "3.11"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "frenck"; ··· 24 24 rev = "refs/tags/v${version}"; 25 25 hash = "sha256-SvsrvGwIAlj/8hdk90+rxigVrx6n3YInvF/4eux2H04="; 26 26 }; 27 + 28 + postPatch = '' 29 + # Upstream doesn't set a version for the pyproject.toml 30 + substituteInPlace pyproject.toml \ 31 + --replace "0.0.0" "${version}" \ 32 + --replace "--cov" "" 33 + ''; 27 34 28 35 nativeBuildInputs = [ 29 36 poetry-core ··· 40 47 pytest-asyncio 41 48 pytestCheckHook 42 49 ]; 43 - 44 - postPatch = '' 45 - # Upstream doesn't set a version for the pyproject.toml 46 - substituteInPlace pyproject.toml \ 47 - --replace "0.0.0" "${version}" \ 48 - --replace "--cov" "" 49 - ''; 50 50 51 51 pythonImportsCheck = [ 52 52 "pvo"