gns3-server: fix build, use buildPythonApplication

This commit is contained in:
Jonathan Ringer 2022-02-11 11:18:39 -08:00
parent 81db6645f4
commit 877f1347ce
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -17,13 +17,28 @@ let
};
doCheck = false;
});
jsonschema = super.jsonschema.overridePythonAttrs (oldAttrs: rec {
version = "3.2.0";
src = super.fetchPypi {
inherit (oldAttrs) pname;
inherit version;
sha256 = "sha256-yKhbKNN3zHc35G4tnytPRO48Dh3qxr9G3e/HGH0weXo=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
doCheck = false;
});
})
];
python = python3.override {
packageOverrides = lib.foldr lib.composeExtensions (self: super: { }) ([ packageOverrides ] ++ defaultOverrides);
};
in python.pkgs.buildPythonPackage {
in python.pkgs.buildPythonApplication {
pname = "gns3-server";
inherit version;