9f8670c206
paperless wasn't building because django-cors-headers didn't build anymore with the pinned django version. I tested the paperless service (editd a few documents) and it works fine, even with django unpinned.
12 lines
290 B
Nix
12 lines
290 B
Nix
pyPkgs: fetchFromGitHub:
|
|
{
|
|
factory_boy_2_12_0 = pyPkgs.factory_boy.overridePythonAttrs (old: rec {
|
|
version = "2.12.0";
|
|
src = pyPkgs.fetchPypi {
|
|
inherit (old) pname;
|
|
inherit version;
|
|
sha256 = "0w53hjgag6ad5i2vmrys8ysk54agsqvgbjy9lg8g0d8pi9h8vx7s";
|
|
};
|
|
});
|
|
}
|