gns3-server: fix build, use buildPythonApplication
This commit is contained in:
parent
81db6645f4
commit
877f1347ce
1 changed files with 16 additions and 1 deletions
|
@ -17,13 +17,28 @@ let
|
||||||
};
|
};
|
||||||
doCheck = false;
|
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 {
|
python = python3.override {
|
||||||
packageOverrides = lib.foldr lib.composeExtensions (self: super: { }) ([ packageOverrides ] ++ defaultOverrides);
|
packageOverrides = lib.foldr lib.composeExtensions (self: super: { }) ([ packageOverrides ] ++ defaultOverrides);
|
||||||
};
|
};
|
||||||
in python.pkgs.buildPythonPackage {
|
in python.pkgs.buildPythonApplication {
|
||||||
pname = "gns3-server";
|
pname = "gns3-server";
|
||||||
inherit version;
|
inherit version;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue