texstudio: 4.8.4 -> 4.8.5 (#365076)
[NixPkgs.git] / pkgs / applications / kde / kdevelop / kdev-python.nix
blob9c033837b0a81b95c1e3d09e81476864a723b24a
2   mkDerivation,
3   lib,
4   cmake,
5   extra-cmake-modules,
6   threadweaver,
7   ktexteditor,
8   kdevelop-unwrapped,
9   python39,
11 let
12   # FIXME: stick with python 3.9 until MR supporting 3.10 is ready:
13   # https://invent.kde.org/kdevelop/kdev-python/-/merge_requests/16
14   python = python39;
16 mkDerivation rec {
17   pname = "kdev-python";
19   cmakeFlags = [
20     "-DPYTHON_EXECUTABLE=${python}/bin/python"
21   ];
23   nativeBuildInputs = [
24     cmake
25     extra-cmake-modules
26   ];
27   buildInputs = [
28     threadweaver
29     ktexteditor
30     kdevelop-unwrapped
31   ];
33   dontWrapQtApps = true;
35   meta = with lib; {
36     maintainers = [ maintainers.aanderse ];
37     platforms = platforms.linux;
38     description = "Python support for KDevelop";
39     homepage = "https://www.kdevelop.org";
40     license = [ licenses.gpl2 ];
41   };