Commit Graph

40 Commits

Author SHA1 Message Date
Sandro Jäckel
ca355f14c8
treewide: replace all pytest-cov patching outside of pythonPackages with pytest-cov-stub 2024-08-27 20:47:13 +02:00
Martin Weinelt
2146326272
pretalx: 2024.2.0 -> 2024.2.1
https://docs.pretalx.org/en/latest/changelog.html
2024-08-09 13:27:24 +02:00
Martin Weinelt
a622c107de
pretalx: add missing django[argon2] extra
Breaks the login flow, since passwords will be migrated to argon2, but
the dependency is missing.
2024-08-07 01:39:05 +02:00
Martin Weinelt
00013f5001
pretalx.plugins.youtube: 2.1.0 -> 2.2.0
https://github.com/pretalx/pretalx-youtube/compare/v2.1.0...v2.2.0
2024-08-06 19:54:07 +02:00
Martin Weinelt
61d7da10e2
pretalx.plugins.vimeo: 2.2.0 -> 2.3.0
https://github.com/pretalx/pretalx-vimeo/compare/v2.2.0...v2.3.0
2024-08-06 19:54:06 +02:00
Martin Weinelt
dff5dd7d72
pretalx.plugins.venueless: 1.3.0 -> 1.4.0
https://github.com/pretalx/pretalx-venueless/compare/v1.3.0...v1.4.0
2024-08-06 19:54:05 +02:00
Martin Weinelt
89e3ce7b75
pretalx.plugins.public-voting: 1.5.0 -> 1.6.0
https://github.com/pretalx/pretalx-public-voting/compare/v1.5.0...v1.6.0
2024-08-06 19:54:05 +02:00
Martin Weinelt
d17feedef7
pretalx.plugins.pages: 1.4.0 -> 1.5.0
https://github.com/pretalx/pretalx-pages/compare/v1.4.0...v1.5.0
2024-08-06 19:54:04 +02:00
Martin Weinelt
d2b7130a8e
pretalx.plugins.media-ccc-de: 1.2.1 -> 1.3.0
https://github.com/pretalx/pretalx-media-ccc-de/compare/v1.2.1...v1.3.0
2024-08-06 19:54:04 +02:00
Martin Weinelt
950ae73b83
pretalx.plugins.downstream: 1.2.0 -> 1.3.0
https://github.com/pretalx/pretalx-downstream/compare/v1.2.0...v1.3.0
2024-08-06 19:54:03 +02:00
Martin Weinelt
45b32e82bd
pretalx: 2024.1.0 -> 2024.2.0
https://docs.pretalx.org/changelog/#v2024-2-0
2024-08-06 19:54:02 +02:00
Fabian Affolter
4f52beaa9e pretalx: relax whitenoise 2024-08-05 08:54:59 +02:00
adisbladis
e0816431a2 treewide: Pass self when overriding Python
Otherwise references to the Python interpreter inside the set are wrong, as demonstrated by:
``` nix
with import <nixpkgs> { };
let
  python' = python3.override {
    packageOverrides = final: prev: { requests = prev.requests.overridePythonAttrs(old: { version = "1337";  }); };
  };
in python'.pkgs.python.pkgs.requests
```
which returns the _non_ overriden requests.

And the same with `self`:
```
with import <nixpkgs> { };
let
  python' = python3.override {
    self = python';
    packageOverrides = final: prev: { requests = prev.requests.overridePythonAttrs(old: { version = "1337";  }); };
  };
in python'.pkgs.python.pkgs.requests
```
which returns the overriden requests.

This can manifest itself as file collisions when constructing environments or as subtly incorrect dependency graphs.
2024-08-03 12:18:56 +12:00
Martin Weinelt
4c849ba5a9
pretalx: return to python 3.12 2024-07-06 15:32:17 +02:00
Martin Weinelt
b737fcb8c4
pretalx: pin to python3.11, relax publicsuffixlist
The dependency chain of pretalx uses fastdiff, which depends on wasmer,
neither of which is ready for Python 3.12.
2024-07-06 14:59:42 +02:00
K900
665f1d6183 Merge remote-tracking branch 'origin/master' into staging-next 2024-07-02 08:32:46 +03:00
Martin Weinelt
0b9530c7ca
pretalx: relax django-compressor constraint 2024-07-01 20:46:49 +02:00
Martin Weinelt
abdf5dc772
treewide: remove pythonRelaxDepsHook references
It is is now provided automatically, when `pythonRelaxDeps` or
`pythonRemoveDeps` is defined through `mk-python-derivation`.
2024-06-14 14:52:00 +02:00
Martin Weinelt
4b2a8a6d8e
pretalx: backport drf 3.15 support 2024-06-13 09:38:07 +02:00
Martin Weinelt
3efcc2bcf2
Merge pull request #315187 from sephii/djangorestframework-3_15_1
python3Packages.djangorestframework: 3.14.0 -> 3.15.1
2024-06-13 00:02:17 +02:00
Sylvain Fankhauser
b56c60cdd6
python311Packages.djangorestframework: 3.14.0 -> 3.15.1
https://github.com/encode/django-rest-framework/releases/tag/3.15.1

Co-Authored-By: Martin Weinelt <hexa@darmstadt.ccc.de>
2024-06-12 22:05:03 +02:00
Martin Weinelt
93d2d5b7d3
pretalx: relax requests constraint 2024-06-12 21:31:40 +02:00
Alexis Hildebrandt
755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00
Martin Weinelt
0b07345423
pretalx: relax rules constraint 2024-05-19 02:11:36 +02:00
Weijia Wang
110e635afb pretalx.plugins.youtube: init at 2.1.0 2024-05-15 14:11:18 +02:00
Weijia Wang
5fd3779176 pretalx.plugins.vimeo: init at 2.2.0 2024-05-15 14:11:09 +02:00
Weijia Wang
a8f9b41e97 pretalx.plugins.venueless: init at 1.3.0 2024-05-15 14:11:00 +02:00
Weijia Wang
3a1718e8db pretalx.plugins.public-voting: init at 1.5.0 2024-05-15 14:10:51 +02:00
Weijia Wang
df155f2bd7 pretalx.plugins.pages: init at 1.4.0 2024-05-15 14:10:42 +02:00
Weijia Wang
e52264a8e0 pretalx.plugins.media-ccc-de: init at 1.2.1 2024-05-15 14:10:34 +02:00
Weijia Wang
a2b0c5a8ad pretalx.plugins.downstream: init at 1.2.0 2024-05-15 14:10:26 +02:00
Weijia Wang
3607e66f5a pretalx: add basic support for plugins 2024-05-15 14:10:03 +02:00
Martin Weinelt
622af635bb
pretalx: adopt and set up code ownership 2024-05-09 18:20:14 +02:00
Martin Weinelt
7acb117992
pretalx: relax dependency constraints 2024-05-05 20:52:26 +02:00
Martin Weinelt
0f248ad5db
pretalx: relax cssutils & django-filter constraint 2024-04-07 13:05:16 +02:00
Martin Weinelt
3321e63b12
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
- pkgs/development/python-modules/sphinx-autobuild/default.nix
2024-03-19 04:00:32 +01:00
stuebinm
ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00
Martin Weinelt
1dda3f13c3
pretalx: relax djano-csp, python-dateutil constraint 2024-03-17 17:56:54 +01:00
Sandro Jäckel
f2b85ff466
pretalx: 2023.1.3 -> 2024.1.0
Changelog: https://github.com/pretalx/pretalx/releases/tag/v2024.1.0
2024-02-27 15:15:10 +01:00
Martin Weinelt
a17b0692ec
pretalx: init at 2023.1.3 2024-01-30 17:41:34 +01:00