peering-manager: 1.7.4 -> 1.8.1
This commit is contained in:
parent
67df3cd0ab
commit
2287c3e69b
1 changed files with 14 additions and 3 deletions
|
@ -9,21 +9,30 @@
|
||||||
|
|
||||||
python3.pkgs.buildPythonApplication rec {
|
python3.pkgs.buildPythonApplication rec {
|
||||||
pname = "peering-manager";
|
pname = "peering-manager";
|
||||||
version = "1.7.4";
|
version = "1.8.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = pname;
|
owner = pname;
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-mXva4c5Rtjq/jFJl3yGGlVrggzGJ3awN0+xoDnDWBSA=";
|
sha256 = "sha256-N34piaSP+QKZzjT42nAR47DTtqGtZ/GMeTeTyRQw3/4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# restore support unix sockets for redis connections
|
||||||
|
# https://github.com/peering-manager/peering-manager/pull/773
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/peering-manager/peering-manager/commit/ff66823c04d8c545a46dcec91d61eda7c21f99aa.patch";
|
||||||
|
hash = "sha256-x5E0LFhGrc5LPY4pwAMNUtigltLGqqbRCe1PIm0yLA8=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
format = "other";
|
format = "other";
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
django
|
django
|
||||||
djangorestframework
|
djangorestframework
|
||||||
django-cacheops
|
django-redis
|
||||||
django-debug-toolbar
|
django-debug-toolbar
|
||||||
django-filter
|
django-filter
|
||||||
django-postgresql-netfields
|
django-postgresql-netfields
|
||||||
|
@ -32,11 +41,13 @@ python3.pkgs.buildPythonApplication rec {
|
||||||
django-tables2
|
django-tables2
|
||||||
django-taggit
|
django-taggit
|
||||||
drf-spectacular
|
drf-spectacular
|
||||||
|
drf-spectacular-sidecar
|
||||||
jinja2
|
jinja2
|
||||||
markdown
|
markdown
|
||||||
napalm
|
napalm
|
||||||
packaging
|
packaging
|
||||||
psycopg2
|
psycopg2
|
||||||
|
pyixapi
|
||||||
pynetbox
|
pynetbox
|
||||||
pyyaml
|
pyyaml
|
||||||
requests
|
requests
|
||||||
|
|
Loading…
Reference in a new issue