pythonPackages.jsonnet: init at same version as standalone
This commit is contained in:
parent
802a700373
commit
c20e20c060
|
@ -5,7 +5,7 @@ let version = "0.8.7"; in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "jsonnet-${version}";
|
name = "jsonnet-${version}";
|
||||||
|
|
||||||
srcs = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
owner = "google";
|
owner = "google";
|
||||||
repo = "jsonnet";
|
repo = "jsonnet";
|
||||||
|
|
|
@ -11804,6 +11804,10 @@ in modules // {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
jsonnet = buildPythonPackage {
|
||||||
|
inherit (pkgs.jsonnet) name src;
|
||||||
|
};
|
||||||
|
|
||||||
jupyter_client = buildPythonPackage rec {
|
jupyter_client = buildPythonPackage rec {
|
||||||
version = "4.2.2";
|
version = "4.2.2";
|
||||||
name = "jupyter_client-${version}";
|
name = "jupyter_client-${version}";
|
||||||
|
|
Loading…
Reference in New Issue