webcomix update & pin of scrapy

This commit is contained in:
Danilo Reyes 2025-02-08 11:48:51 -06:00
parent f6d736330d
commit 4da88320ef
3 changed files with 15 additions and 4 deletions

4
flake.lock generated
View File

@ -3,8 +3,8 @@
"nixpkgs": {
"locked": {
"lastModified": 0,
"narHash": "sha256-Tbk1MZbtV2s5aG+iM99U8FqwxU/YNArMcWAv6clcsBc=",
"path": "/nix/store/l9nb64iii15y0nr37qrs1cfm6rlpg6gh-source",
"narHash": "sha256-ooLh+XW8jfa+91F1nhf9OF7qhuA/y1ChLx6lXDNeY5U=",
"path": "/nix/store/k8nkf470zpidpa5nh76lh2x6rxfzpwa4-source",
"type": "path"
},
"original": {

View File

@ -24,6 +24,17 @@
|> builtins.listToAttrs;
in
{
overlays.default = final: prev: {
scrapy = prev.scrapy.overrideAttrs (old: rec {
version = "2.11.2";
src = prev.fetchFromGitHub {
owner = "scrapy";
repo = "scrapy";
tag = version;
hash = "sha256-EaO1kQ3VSTwEW+r0kSKycOxHNTPwwCVjch1ZBrTU0qQ=";
};
});
};
packages.x86_64-linux =
let
scriptBin = path: name: pkgs.writeScriptBin name (builtins.readFile path);

View File

@ -6,14 +6,14 @@
python3Packages.buildPythonApplication rec {
pname = "webcomix";
version = "3.11.0";
version = "3.11.1";
pyproject = true;
src = fetchFromGitHub {
owner = "J-CPelletier";
repo = "webcomix";
rev = version;
hash = "sha256-Y16+/9TnECMkppgI/BeAbTLWt0M4V/xn1+hM4ILp/+g=";
hash = "sha256-vs7IE1IQ6/2uOYqLUskW4vGFdoz8z/ZBYQPteTcdOR0=";
};
postPatch = ''