gns3-{gui,server}: 2.2.0 -> 2.2.1

This commit is contained in:
Michael Weiss
2019-11-03 14:05:31 +01:00
parent 546c02c0e4
commit 5b2a6c9984
3 changed files with 29 additions and 11 deletions
+11 -2
View File
@@ -3,8 +3,17 @@
{ stdenv, python3, fetchFromGitHub }:
let
python = python3;
python = python3.override {
packageOverrides = self: super: {
jsonschema = super.jsonschema.overridePythonAttrs (oldAttrs: rec {
version = "2.6.0";
src = oldAttrs.src.override {
inherit version;
sha256 = "00kf3zmpp9ya4sydffpifn0j0mzm342a2vzh82p6r0vh10cg7xbg";
};
});
};
};
in python.pkgs.buildPythonPackage {
pname = "gns3-server";
inherit version;