pythonPackages.jsonnet: init at same version as standalone

This commit is contained in:
Dan Peebles 2016-07-19 07:56:24 -04:00
parent 802a700373
commit c20e20c060
2 changed files with 5 additions and 1 deletions

View File

@ -5,7 +5,7 @@ let version = "0.8.7"; in
stdenv.mkDerivation {
name = "jsonnet-${version}";
srcs = fetchFromGitHub {
src = fetchFromGitHub {
rev = "v${version}";
owner = "google";
repo = "jsonnet";

View File

@ -11804,6 +11804,10 @@ in modules // {
};
};
jsonnet = buildPythonPackage {
inherit (pkgs.jsonnet) name src;
};
jupyter_client = buildPythonPackage rec {
version = "4.2.2";
name = "jupyter_client-${version}";