seahub: 9.0.10 -> 10.0.1

This commit is contained in:
Greizgh 2023-08-16 13:39:11 +02:00
parent ccaf5e5d34
commit 89e379ace2
No known key found for this signature in database
GPG Key ID: 68B0B42612A108B2

View File

@ -6,29 +6,22 @@
, nixosTests
}:
let
# Seahub 8.x.x does not support django-webpack-loader >=1.x.x
python = python3.override {
packageOverrides = self: super: {
django-webpack-loader = super.django-webpack-loader.overridePythonAttrs (old: rec {
version = "0.7.0";
src = old.src.override {
inherit version;
hash = "sha256-ejyIIBqlRIH5OZRlYVy+e5rs6AgUlqbQKHt8uOIy9Ec=";
};
});
django = super.django_3;
};
};
in
python.pkgs.buildPythonApplication rec {
pname = "seahub";
version = "9.0.10";
version = "10.0.1";
pyproject = false;
src = fetchFromGitHub {
owner = "haiwen";
repo = "seahub";
rev = "5971bf25fe67d94ec4d9f53b785c15a098113620"; # using a fixed revision because upstream may re-tag releases :/
sha256 = "sha256-7Exvm3EShb/1EqwA4wzWB9zCdv0P/ISmjKSoqtOMnqk=";
rev = "e8c02236c0eaca6dde009872745f089da4b77e6e"; # using a fixed revision because upstream may re-tag releases :/
sha256 = "sha256-7JXWKEFqCsC+ZByhvyP8AmDpajT3hpgyYDNUqc3wXyg=";
};
patches = [