nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python313Packages.demetriek: 1.2.0 -> 1.3.0

Changelog: https://github.com/frenck/python-demetriek/releases/tag/v1.3.0

authored by

Fabian Affolter and committed by
Martin Weinelt
21bb7025 f98ec00b

+5 -10
+5 -10
pkgs/development/python-modules/demetriek/default.nix
··· 12 12 pytest-asyncio, 13 13 pytest-cov-stub, 14 14 pytestCheckHook, 15 - pythonOlder, 15 + syrupy, 16 16 yarl, 17 17 }: 18 18 19 19 buildPythonPackage rec { 20 20 pname = "demetriek"; 21 - version = "1.2.0"; 21 + version = "1.3.0"; 22 22 pyproject = true; 23 - 24 - disabled = pythonOlder "3.11"; 25 23 26 24 src = fetchFromGitHub { 27 25 owner = "frenck"; 28 26 repo = "python-demetriek"; 29 27 tag = "v${version}"; 30 - hash = "sha256-KqLkct4Kd8wa5eKYJJq1y/5z5PbO0XaK0aGzs3bm8fs="; 28 + hash = "sha256-6vzQaifvQ24LpSQFwPMvEvb1wuyv0iRpLCFHFO9V7sc="; 31 29 }; 32 30 33 31 postPatch = '' ··· 34 36 --replace-fail "0.0.0" "${version}" 35 37 ''; 36 38 37 - pythonRelaxDeps = [ "pydantic" ]; 38 - 39 - build-system = [ 40 - poetry-core 41 - ]; 39 + build-system = [ poetry-core ]; 42 40 43 41 dependencies = [ 44 42 aiohttp ··· 50 56 pytest-asyncio 51 57 pytest-cov-stub 52 58 pytestCheckHook 59 + syrupy 53 60 ]; 54 61 55 62 pythonImportsCheck = [ "demetriek" ];