Personal-use NixOS configuration

Update Byparr and dependencies

+10 -10
+2 -2
packages/apify-fingerprint-datapoints/default.nix
··· 7 7 8 8 python3.pkgs.buildPythonPackage rec { 9 9 pname = "apify-fingerprint-datapoints"; 10 - version = "0.7.0"; 10 + version = "0.11.0"; 11 11 pyproject = true; 12 12 13 13 disabled = pythonOlder "3.8"; ··· 15 15 src = fetchPypi { 16 16 pname = "apify_fingerprint_datapoints"; 17 17 inherit version; 18 - hash = "sha256-eF+1x4SVY1TvlQquM0swuchBxiA82CHo4AK7/u0wk1U="; 18 + hash = "sha256-P5BcOSsRon+1nM/kCJHBZqvXN6ucYglzPxAruzswJRU="; 19 19 }; 20 20 21 21 build-system = with python3.pkgs; [ hatchling ];
+4 -4
packages/browserforge/default.nix
··· 8 8 apify-fingerprint-datapoints, 9 9 }: 10 10 11 - python3.pkgs.buildPythonPackage { 11 + python3.pkgs.buildPythonPackage rec { 12 12 pname = "browserforge"; 13 - version = "1.2.3-unstable"; 13 + version = "1.2.4"; 14 14 pyproject = true; 15 15 16 16 disabled = pythonOlder "3.11"; ··· 18 18 src = fetchFromGitHub { 19 19 owner = "daijro"; 20 20 repo = "browserforge"; 21 - rev = "99dd114332c17e895469107847e7193e2832504a"; 22 - hash = "sha256-xW7+8MdxPSNLreHj+IetcjTHWGghCXJxRInRcokrBac="; 21 + tag = "v${version}"; 22 + hash = "sha256-8mh1Wok96rwUNAdnaoI1VYkyNr50JX/K7o04n/epuMo="; 23 23 }; 24 24 25 25 build-system = with python3.pkgs; [ poetry-core ];
+2 -2
packages/byparr/default.nix
··· 25 25 in 26 26 stdenv.mkDerivation rec { 27 27 pname = "byparr"; 28 - version = "2.0.1"; 28 + version = "2.1.0"; 29 29 pyproject = true; 30 30 31 31 src = fetchFromGitHub { 32 32 owner = "ThePhaseless"; 33 33 repo = "Byparr"; 34 34 tag = "v${version}"; 35 - hash = "sha256-6/yUlahcNceMHuIYsvEFLarYnkxh+IeSrvYCtKIA5r0="; 35 + hash = "sha256-6XlhQJI/TBYXbojivBp+dFXJDcuBsY6ZLwLwTw+YqMA="; 36 36 }; 37 37 38 38 build-system = with python3.pkgs; [
+2 -2
packages/camoufox/default.nix
··· 8 8 }: 9 9 10 10 let 11 - geoliteVersion = "2026.01.28"; 11 + geoliteVersion = "2026.03.04"; 12 12 13 13 geoliteDatabase = fetchurl { 14 14 url = "https://github.com/P3TERX/GeoLite.mmdb/releases/download/${geoliteVersion}/GeoLite2-City.mmdb"; 15 - hash = "sha256-aW/51Ob6KMf3YLzW02Lh8/cp8/fn+doRdOjj/CSDtCo="; 15 + hash = "sha256-PfkOiZ2iyg3Ux/rhFtHNZYYmGii2OJSmPHlZLp8ow20="; 16 16 }; 17 17 in 18 18 python3.pkgs.buildPythonPackage rec {