Commit 8a3384dd authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files
parent 8cdd95d7
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -30,20 +30,20 @@

buildPythonPackage rec {
  pname = "nutpie";
  version = "0.14.2";
  version = "0.14.3";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "pymc-devs";
    repo = "nutpie";
    tag = "v${version}";
    hash = "sha256-9sHs2JbzVRvAJEoLcz5NxkbElbXblDzxA6oCBtb4yFE=";
    hash = "sha256-l2TEGa9VVJmU4mKZwfUdhiloW6Bh41OqIQzTRvYK3eg=";
  };

  cargoDeps = rustPlatform.fetchCargoVendor {
    inherit src;
    name = "${pname}-${version}";
    hash = "sha256-j7Vasy4BwOYzH43mWdbu+QsNCdRfvJC6ZvYU8XB5s4E=";
    hash = "sha256-hPKT+YM9s7XZhI3sfnLBfokbGQhwDa9y5Fgg1TItO4M=";
  };

  build-system = [